Class DocumentResponseType
- java.lang.Object
-
- network.oxalis.peppol.ubl2.jaxb.cac.DocumentResponseType
-
public class DocumentResponseType extends Object
Java class for DocumentResponseType complex type
.The following schema fragment specifies the expected content contained within this class.
<complexType name="DocumentResponseType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element ref="{urn:oasis:names:specification:ubl:schema:xsd:CommonAggregateComponents-2}Response"/> <element ref="{urn:oasis:names:specification:ubl:schema:xsd:CommonAggregateComponents-2}DocumentReference" maxOccurs="unbounded"/> <element ref="{urn:oasis:names:specification:ubl:schema:xsd:CommonAggregateComponents-2}IssuerParty" minOccurs="0"/> <element ref="{urn:oasis:names:specification:ubl:schema:xsd:CommonAggregateComponents-2}RecipientParty" minOccurs="0"/> <element ref="{urn:oasis:names:specification:ubl:schema:xsd:CommonAggregateComponents-2}LineResponse" maxOccurs="unbounded" minOccurs="0"/> </sequence> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected List<DocumentReferenceType>documentReferenceprotected PartyTypeissuerPartyprotected List<LineResponseType>lineResponseprotected PartyTyperecipientPartyprotected ResponseTyperesponse
-
Constructor Summary
Constructors Constructor Description DocumentResponseType()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<DocumentReferenceType>getDocumentReference()Gets the value of the documentReference property.PartyTypegetIssuerParty()Gets the value of the issuerParty property.List<LineResponseType>getLineResponse()Gets the value of the lineResponse property.PartyTypegetRecipientParty()Gets the value of the recipientParty property.ResponseTypegetResponse()Gets the value of the response property.voidsetIssuerParty(PartyType value)Sets the value of the issuerParty property.voidsetRecipientParty(PartyType value)Sets the value of the recipientParty property.voidsetResponse(ResponseType value)Sets the value of the response property.
-
-
-
Field Detail
-
response
protected ResponseType response
-
documentReference
protected List<DocumentReferenceType> documentReference
-
issuerParty
protected PartyType issuerParty
-
recipientParty
protected PartyType recipientParty
-
lineResponse
protected List<LineResponseType> lineResponse
-
-
Method Detail
-
getResponse
public ResponseType getResponse()
Gets the value of the response property.- Returns:
- possible object is
ResponseType
-
setResponse
public void setResponse(ResponseType value)
Sets the value of the response property.- Parameters:
value- allowed object isResponseType
-
getDocumentReference
public List<DocumentReferenceType> getDocumentReference()
Gets the value of the documentReference 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 documentReference property.For example, to add a new item, do as follows:
getDocumentReference().add(newItem);
Objects of the following type(s) are allowed in the list
DocumentReferenceType- Returns:
- The value of the documentReference property.
-
getIssuerParty
public PartyType getIssuerParty()
Gets the value of the issuerParty property.- Returns:
- possible object is
PartyType
-
setIssuerParty
public void setIssuerParty(PartyType value)
Sets the value of the issuerParty property.- Parameters:
value- allowed object isPartyType
-
getRecipientParty
public PartyType getRecipientParty()
Gets the value of the recipientParty property.- Returns:
- possible object is
PartyType
-
setRecipientParty
public void setRecipientParty(PartyType value)
Sets the value of the recipientParty property.- Parameters:
value- allowed object isPartyType
-
getLineResponse
public List<LineResponseType> getLineResponse()
Gets the value of the lineResponse 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 lineResponse property.For example, to add a new item, do as follows:
getLineResponse().add(newItem);
Objects of the following type(s) are allowed in the list
LineResponseType- Returns:
- The value of the lineResponse property.
-
-