org.oslc.asset.internal
Class Assets

java.lang.Object
  extended by org.oslc.asset.internal.Assets

public class Assets
extends java.lang.Object

Java class for Assets complex type.

The following schema fragment specifies the expected content contained within this class.

 <complexType name="Assets">
   <complexContent>
     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
       <sequence>
         <element name="home" type="{http://open-services.net/xmlns/asset/1.0/}Home" maxOccurs="unbounded" minOccurs="0"/>
         <element name="factory" type="{http://open-services.net/xmlns/asset/1.0/}Factory" maxOccurs="unbounded" minOccurs="0"/>
         <element name="simpleQuery" type="{http://open-services.net/xmlns/asset/1.0/}SimpleQuery" maxOccurs="unbounded" minOccurs="0"/>
       </sequence>
       <attribute name="version" type="{http://www.w3.org/2001/XMLSchema}string" />
     </restriction>
   </complexContent>
 </complexType>
 


Field Summary
protected  java.util.List<Dialog> creationDialog
           
protected  java.util.List<Factory> factory
           
protected  Home home
           
protected  java.util.List<Dialog> selectionDialog
           
protected  java.util.List<SimpleQuery> simpleQuery
           
protected  java.lang.String version
           
 
Constructor Summary
Assets()
           
 
Method Summary
 java.util.List<Dialog> getCreationDialog()
          Gets the creation dialogs property.
 java.util.List<Factory> getFactory()
          Gets the value of the factory property.
 Home getHome()
          Gets the value of the home property.
 java.util.List<Dialog> getSelectionDialog()
          Gets the selection dialogs property.
 java.util.List<SimpleQuery> getSimpleQuery()
          Gets the value of the simpleQuery property.
 java.lang.String getVersion()
          Gets the value of the version property.
 void setHome(Home value)
          Sets the value of the home property.
 void setVersion(java.lang.String value)
          Sets the value of the version property.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

home

protected Home home

factory

protected java.util.List<Factory> factory

simpleQuery

protected java.util.List<SimpleQuery> simpleQuery

version

protected java.lang.String version

selectionDialog

protected java.util.List<Dialog> selectionDialog

creationDialog

protected java.util.List<Dialog> creationDialog
Constructor Detail

Assets

public Assets()
Method Detail

getHome

public Home getHome()
Gets the value of the home property.

Returns:
possible object is Assets

setHome

public void setHome(Home value)
Sets the value of the home property.

Parameters:
value - allowed object is Assets

getFactory

public java.util.List<Factory> getFactory()
Gets the value of the factory property.

This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a set method for the factory property.

For example, to add a new item, do as follows:

    getFactory().add(newItem);
 

Objects of the following type(s) are allowed in the list Factory


getSimpleQuery

public java.util.List<SimpleQuery> getSimpleQuery()
Gets the value of the simpleQuery property.

This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a set method for the simpleQuery property.

For example, to add a new item, do as follows:

    getSimpleQuery().add(newItem);
 

Objects of the following type(s) are allowed in the list SimpleQuery


getVersion

public java.lang.String getVersion()
Gets the value of the version property.

Returns:
possible object is String

setVersion

public void setVersion(java.lang.String value)
Sets the value of the version property.

Parameters:
value - allowed object is String

getSelectionDialog

public java.util.List<Dialog> getSelectionDialog()
Gets the selection dialogs property.

This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a set method for the factory property.

For example, to add a new dialog, do as follows:

    getSelectionDialog().add(newItem);
 

Objects of the following type(s) are allowed in the list Dialog

Since:
7.5.1

getCreationDialog

public java.util.List<Dialog> getCreationDialog()
Gets the creation dialogs property.

This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a set method for the factory property.

For example, to add a new dialog, do as follows:

    getCreationDialog().add(newItem);
 

Objects of the following type(s) are allowed in the list Dialog

Since:
7.5.1