Package org.cxml
Class ReceiptIDInfo
- java.lang.Object
-
- org.cxml.ReceiptIDInfo
-
public class ReceiptIDInfo extends java.lang.Object
-
-
Field Summary
Fields Modifier and Type Field Description protected java.util.List<IdReference>idReferenceprotected java.lang.StringreceiptDateprotected java.lang.StringreceiptID
-
Constructor Summary
Constructors Constructor Description ReceiptIDInfo()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.List<IdReference>getIdReference()Gets the value of the idReference property.java.lang.StringgetReceiptDate()Gets the value of the receiptDate property.java.lang.StringgetReceiptID()Gets the value of the receiptID property.voidsetReceiptDate(java.lang.String value)Sets the value of the receiptDate property.voidsetReceiptID(java.lang.String value)Sets the value of the receiptID property.
-
-
-
Field Detail
-
receiptID
protected java.lang.String receiptID
-
receiptDate
protected java.lang.String receiptDate
-
idReference
protected java.util.List<IdReference> idReference
-
-
Method Detail
-
getReceiptID
public java.lang.String getReceiptID()
Gets the value of the receiptID property.- Returns:
- possible object is
String
-
setReceiptID
public void setReceiptID(java.lang.String value)
Sets the value of the receiptID property.- Parameters:
value- allowed object isString
-
getReceiptDate
public java.lang.String getReceiptDate()
Gets the value of the receiptDate property.- Returns:
- possible object is
String
-
setReceiptDate
public void setReceiptDate(java.lang.String value)
Sets the value of the receiptDate property.- Parameters:
value- allowed object isString
-
getIdReference
public java.util.List<IdReference> getIdReference()
Gets the value of the idReference 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 idReference property.For example, to add a new item, do as follows:
getIdReference().add(newItem);Objects of the following type(s) are allowed in the list
IdReference
-
-