Class StowageType
- java.lang.Object
-
- network.oxalis.peppol.ubl2.jaxb.cac.StowageType
-
public class StowageType extends Object
Java class for StowageType complex type
.The following schema fragment specifies the expected content contained within this class.
<complexType name="StowageType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element ref="{urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-2}LocationID" minOccurs="0"/> <element ref="{urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-2}Location" maxOccurs="unbounded" minOccurs="0"/> <element ref="{urn:oasis:names:specification:ubl:schema:xsd:CommonAggregateComponents-2}MeasurementDimension" maxOccurs="unbounded" minOccurs="0"/> </sequence> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected List<LocationType>locationprotected LocationIDTypelocationIDprotected List<DimensionType>measurementDimension
-
Constructor Summary
Constructors Constructor Description StowageType()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<LocationType>getLocation()Gets the value of the location property.LocationIDTypegetLocationID()Gets the value of the locationID property.List<DimensionType>getMeasurementDimension()Gets the value of the measurementDimension property.voidsetLocationID(LocationIDType value)Sets the value of the locationID property.
-
-
-
Field Detail
-
locationID
protected LocationIDType locationID
-
location
protected List<LocationType> location
-
measurementDimension
protected List<DimensionType> measurementDimension
-
-
Method Detail
-
getLocationID
public LocationIDType getLocationID()
Gets the value of the locationID property.- Returns:
- possible object is
LocationIDType
-
setLocationID
public void setLocationID(LocationIDType value)
Sets the value of the locationID property.- Parameters:
value- allowed object isLocationIDType
-
getLocation
public List<LocationType> getLocation()
Gets the value of the location 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 location property.For example, to add a new item, do as follows:
getLocation().add(newItem);
Objects of the following type(s) are allowed in the list
LocationType- Returns:
- The value of the location property.
-
getMeasurementDimension
public List<DimensionType> getMeasurementDimension()
Gets the value of the measurementDimension 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 measurementDimension property.For example, to add a new item, do as follows:
getMeasurementDimension().add(newItem);
Objects of the following type(s) are allowed in the list
DimensionType- Returns:
- The value of the measurementDimension property.
-
-