Class ProjectReferenceType
- java.lang.Object
-
- network.oxalis.peppol.ubl2.jaxb.cac.ProjectReferenceType
-
public class ProjectReferenceType extends Object
Java class for ProjectReferenceType complex type
.The following schema fragment specifies the expected content contained within this class.
<complexType name="ProjectReferenceType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element ref="{urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-2}ID"/> <element ref="{urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-2}UUID" minOccurs="0"/> <element ref="{urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-2}IssueDate" minOccurs="0"/> <element ref="{urn:oasis:names:specification:ubl:schema:xsd:CommonAggregateComponents-2}WorkPhaseReference" maxOccurs="unbounded" minOccurs="0"/> </sequence> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected IDTypeidprotected IssueDateTypeissueDateprotected UUIDTypeuuidprotected List<WorkPhaseReferenceType>workPhaseReference
-
Constructor Summary
Constructors Constructor Description ProjectReferenceType()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description IDTypegetID()Gets the value of the id property.IssueDateTypegetIssueDate()Gets the value of the issueDate property.UUIDTypegetUUID()Gets the value of the uuid property.List<WorkPhaseReferenceType>getWorkPhaseReference()Gets the value of the workPhaseReference property.voidsetID(IDType value)Sets the value of the id property.voidsetIssueDate(IssueDateType value)Sets the value of the issueDate property.voidsetUUID(UUIDType value)Sets the value of the uuid property.
-
-
-
Field Detail
-
id
protected IDType id
-
uuid
protected UUIDType uuid
-
issueDate
protected IssueDateType issueDate
-
workPhaseReference
protected List<WorkPhaseReferenceType> workPhaseReference
-
-
Method Detail
-
setID
public void setID(IDType value)
Sets the value of the id property.- Parameters:
value- allowed object isIDType
-
getUUID
public UUIDType getUUID()
Gets the value of the uuid property.- Returns:
- possible object is
UUIDType
-
setUUID
public void setUUID(UUIDType value)
Sets the value of the uuid property.- Parameters:
value- allowed object isUUIDType
-
getIssueDate
public IssueDateType getIssueDate()
Gets the value of the issueDate property.- Returns:
- possible object is
IssueDateType
-
setIssueDate
public void setIssueDate(IssueDateType value)
Sets the value of the issueDate property.- Parameters:
value- allowed object isIssueDateType
-
getWorkPhaseReference
public List<WorkPhaseReferenceType> getWorkPhaseReference()
Gets the value of the workPhaseReference 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
setmethod for the workPhaseReference property.For example, to add a new item, do as follows:
getWorkPhaseReference().add(newItem);
Objects of the following type(s) are allowed in the list
WorkPhaseReferenceType- Returns:
- The value of the workPhaseReference property.
-
-