Class PricingReferenceType
- java.lang.Object
-
- network.oxalis.peppol.ubl2.jaxb.cac.PricingReferenceType
-
public class PricingReferenceType extends Object
Java class for PricingReferenceType complex type
.The following schema fragment specifies the expected content contained within this class.
<complexType name="PricingReferenceType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element ref="{urn:oasis:names:specification:ubl:schema:xsd:CommonAggregateComponents-2}OriginalItemLocationQuantity" minOccurs="0"/> <element ref="{urn:oasis:names:specification:ubl:schema:xsd:CommonAggregateComponents-2}AlternativeConditionPrice" maxOccurs="unbounded" minOccurs="0"/> </sequence> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected List<PriceType>alternativeConditionPriceprotected ItemLocationQuantityTypeoriginalItemLocationQuantity
-
Constructor Summary
Constructors Constructor Description PricingReferenceType()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<PriceType>getAlternativeConditionPrice()Gets the value of the alternativeConditionPrice property.ItemLocationQuantityTypegetOriginalItemLocationQuantity()Gets the value of the originalItemLocationQuantity property.voidsetOriginalItemLocationQuantity(ItemLocationQuantityType value)Sets the value of the originalItemLocationQuantity property.
-
-
-
Field Detail
-
originalItemLocationQuantity
protected ItemLocationQuantityType originalItemLocationQuantity
-
-
Method Detail
-
getOriginalItemLocationQuantity
public ItemLocationQuantityType getOriginalItemLocationQuantity()
Gets the value of the originalItemLocationQuantity property.- Returns:
- possible object is
ItemLocationQuantityType
-
setOriginalItemLocationQuantity
public void setOriginalItemLocationQuantity(ItemLocationQuantityType value)
Sets the value of the originalItemLocationQuantity property.- Parameters:
value- allowed object isItemLocationQuantityType
-
getAlternativeConditionPrice
public List<PriceType> getAlternativeConditionPrice()
Gets the value of the alternativeConditionPrice 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 alternativeConditionPrice property.For example, to add a new item, do as follows:
getAlternativeConditionPrice().add(newItem);
Objects of the following type(s) are allowed in the list
PriceType- Returns:
- The value of the alternativeConditionPrice property.
-
-