Class EndorsementType
- java.lang.Object
-
- network.oxalis.peppol.ubl2.jaxb.cac.EndorsementType
-
public class EndorsementType extends Object
Java class for EndorsementType complex type
.The following schema fragment specifies the expected content contained within this class.
<complexType name="EndorsementType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element ref="{urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-2}DocumentID"/> <element ref="{urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-2}ApprovalStatus"/> <element ref="{urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-2}Remarks" maxOccurs="unbounded" minOccurs="0"/> <element ref="{urn:oasis:names:specification:ubl:schema:xsd:CommonAggregateComponents-2}EndorserParty"/> <element ref="{urn:oasis:names:specification:ubl:schema:xsd:CommonAggregateComponents-2}Signature" maxOccurs="unbounded" minOccurs="0"/> </sequence> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected ApprovalStatusTypeapprovalStatusprotected DocumentIDTypedocumentIDprotected EndorserPartyTypeendorserPartyprotected List<RemarksType>remarksprotected List<SignatureType>signature
-
Constructor Summary
Constructors Constructor Description EndorsementType()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ApprovalStatusTypegetApprovalStatus()Gets the value of the approvalStatus property.DocumentIDTypegetDocumentID()Gets the value of the documentID property.EndorserPartyTypegetEndorserParty()Gets the value of the endorserParty property.List<RemarksType>getRemarks()Gets the value of the remarks property.List<SignatureType>getSignature()Gets the value of the signature property.voidsetApprovalStatus(ApprovalStatusType value)Sets the value of the approvalStatus property.voidsetDocumentID(DocumentIDType value)Sets the value of the documentID property.voidsetEndorserParty(EndorserPartyType value)Sets the value of the endorserParty property.
-
-
-
Field Detail
-
documentID
protected DocumentIDType documentID
-
approvalStatus
protected ApprovalStatusType approvalStatus
-
remarks
protected List<RemarksType> remarks
-
endorserParty
protected EndorserPartyType endorserParty
-
signature
protected List<SignatureType> signature
-
-
Method Detail
-
getDocumentID
public DocumentIDType getDocumentID()
Gets the value of the documentID property.- Returns:
- possible object is
DocumentIDType
-
setDocumentID
public void setDocumentID(DocumentIDType value)
Sets the value of the documentID property.- Parameters:
value- allowed object isDocumentIDType
-
getApprovalStatus
public ApprovalStatusType getApprovalStatus()
Gets the value of the approvalStatus property.- Returns:
- possible object is
ApprovalStatusType
-
setApprovalStatus
public void setApprovalStatus(ApprovalStatusType value)
Sets the value of the approvalStatus property.- Parameters:
value- allowed object isApprovalStatusType
-
getRemarks
public List<RemarksType> getRemarks()
Gets the value of the remarks 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 remarks property.For example, to add a new item, do as follows:
getRemarks().add(newItem);
Objects of the following type(s) are allowed in the list
RemarksType- Returns:
- The value of the remarks property.
-
getEndorserParty
public EndorserPartyType getEndorserParty()
Gets the value of the endorserParty property.- Returns:
- possible object is
EndorserPartyType
-
setEndorserParty
public void setEndorserParty(EndorserPartyType value)
Sets the value of the endorserParty property.- Parameters:
value- allowed object isEndorserPartyType
-
getSignature
public List<SignatureType> getSignature()
Gets the value of the signature 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 signature property.For example, to add a new item, do as follows:
getSignature().add(newItem);
Objects of the following type(s) are allowed in the list
SignatureType- Returns:
- The value of the signature property.
-
-