Class LotIdentificationType
- java.lang.Object
-
- network.oxalis.peppol.ubl2.jaxb.cac.LotIdentificationType
-
public class LotIdentificationType extends Object
Java class for LotIdentificationType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="LotIdentificationType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element ref="{urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-2}LotNumberID" minOccurs="0"/> <element ref="{urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-2}ExpiryDate" minOccurs="0"/> <element ref="{urn:oasis:names:specification:ubl:schema:xsd:CommonAggregateComponents-2}AdditionalItemProperty" maxOccurs="unbounded" minOccurs="0"/> </sequence> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected List<ItemPropertyType>additionalItemPropertyprotected ExpiryDateTypeexpiryDateprotected LotNumberIDTypelotNumberID
-
Constructor Summary
Constructors Constructor Description LotIdentificationType()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<ItemPropertyType>getAdditionalItemProperty()Gets the value of the additionalItemProperty property.ExpiryDateTypegetExpiryDate()Gets the value of the expiryDate property.LotNumberIDTypegetLotNumberID()Gets the value of the lotNumberID property.voidsetExpiryDate(ExpiryDateType value)Sets the value of the expiryDate property.voidsetLotNumberID(LotNumberIDType value)Sets the value of the lotNumberID property.
-
-
-
Field Detail
-
lotNumberID
protected LotNumberIDType lotNumberID
-
expiryDate
protected ExpiryDateType expiryDate
-
additionalItemProperty
protected List<ItemPropertyType> additionalItemProperty
-
-
Method Detail
-
getLotNumberID
public LotNumberIDType getLotNumberID()
Gets the value of the lotNumberID property.- Returns:
- possible object is
LotNumberIDType
-
setLotNumberID
public void setLotNumberID(LotNumberIDType value)
Sets the value of the lotNumberID property.- Parameters:
value- allowed object isLotNumberIDType
-
getExpiryDate
public ExpiryDateType getExpiryDate()
Gets the value of the expiryDate property.- Returns:
- possible object is
ExpiryDateType
-
setExpiryDate
public void setExpiryDate(ExpiryDateType value)
Sets the value of the expiryDate property.- Parameters:
value- allowed object isExpiryDateType
-
getAdditionalItemProperty
public List<ItemPropertyType> getAdditionalItemProperty()
Gets the value of the additionalItemProperty 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 additionalItemProperty property.For example, to add a new item, do as follows:
getAdditionalItemProperty().add(newItem);Objects of the following type(s) are allowed in the list
ItemPropertyType
-
-