2package eu.glsgroup.fpcs.datatypes.soap.v2.shipmentprocessing;
4import java.math.BigDecimal;
5import java.util.ArrayList;
7import javax.xml.bind.annotation.XmlAccessType;
8import javax.xml.bind.annotation.XmlAccessorType;
9import javax.xml.bind.annotation.XmlElement;
10import javax.xml.bind.annotation.XmlSchemaType;
11import javax.xml.bind.annotation.XmlType;
12import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
13import org.w3._2001.xmlschema.Adapter1;
41@XmlAccessorType(XmlAccessType.FIELD)
42@XmlType(name =
"PickUpShipmentUnit", propOrder = {
43 "shipmentUnitReference",
50 @XmlElement(name =
"ShipmentUnitReference")
51 protected List<String> shipmentUnitReference;
52 @XmlElement(name = "Weight", required = true, type = String.class)
54 @XmlSchemaType(name = "decimal")
55 protected BigDecimal weight;
56 @XmlElement(name = "Note1", required = true)
57 protected String note1;
58 @XmlElement(name = "Note2", required = true)
59 protected String note2;
83 public List<String> getShipmentUnitReference() {
84 if (shipmentUnitReference ==
null) {
85 shipmentUnitReference =
new ArrayList<String>();
87 return this.shipmentUnitReference;
void setNote1(String value)
void setWeight(BigDecimal value)
void setNote2(String value)