Package org.icatproject
Class Application
- java.lang.Object
-
- org.icatproject.EntityBaseBean
-
- org.icatproject.Application
-
public class Application extends EntityBaseBean
Java class for application complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="application"> <complexContent> <extension base="{http://icatproject.org}entityBaseBean"> <sequence> <element name="facility" type="{http://icatproject.org}facility" minOccurs="0"/> <element name="jobs" type="{http://icatproject.org}job" maxOccurs="unbounded" minOccurs="0"/> <element name="name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> <element name="version" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> </sequence> </extension> </complexContent> </complexType>
-
-
Constructor Summary
Constructors Constructor Description Application()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description FacilitygetFacility()Gets the value of the facility property.List<Job>getJobs()Gets the value of the jobs property.StringgetName()Gets the value of the name property.StringgetVersion()Gets the value of the version property.voidsetFacility(Facility value)Sets the value of the facility property.voidsetName(String value)Sets the value of the name property.voidsetVersion(String value)Sets the value of the version property.-
Methods inherited from class org.icatproject.EntityBaseBean
getCreateId, getCreateTime, getId, getModId, getModTime, setCreateId, setCreateTime, setId, setModId, setModTime
-
-
-
-
Method Detail
-
getFacility
public Facility getFacility()
Gets the value of the facility property.- Returns:
- possible object is
Facility
-
setFacility
public void setFacility(Facility value)
Sets the value of the facility property.- Parameters:
value- allowed object isFacility
-
getJobs
public List<Job> getJobs()
Gets the value of the jobs 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 Jakarta XML Binding object. This is why there is not a
setmethod for the jobs property.For example, to add a new item, do as follows:
getJobs().add(newItem);Objects of the following type(s) are allowed in the list
Job
-
getName
public String getName()
Gets the value of the name property.- Returns:
- possible object is
String
-
setName
public void setName(String value)
Sets the value of the name property.- Parameters:
value- allowed object isString
-
getVersion
public String getVersion()
Gets the value of the version property.- Returns:
- possible object is
String
-
-