2package eu.glsgroup.fpcs.datatypes.soap.v1.tracking;
4import java.math.BigDecimal;
5import java.util.ArrayList;
8import javax.xml.bind.annotation.XmlAccessType;
9import javax.xml.bind.annotation.XmlAccessorType;
10import javax.xml.bind.annotation.XmlElement;
11import javax.xml.bind.annotation.XmlSchemaType;
12import javax.xml.bind.annotation.XmlType;
13import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
14import eu.gls_group.fpcs.v1.common.Consignee;
15import eu.gls_group.fpcs.v1.common.ProductType;
16import eu.gls_group.fpcs.v1.common.ShipmentService;
17import eu.gls_group.fpcs.v1.common.Shipper;
18import eu.gls_group.fpcs.v1.common.UnitService;
19import org.w3._2001.xmlschema.Adapter1;
20import org.w3._2001.xmlschema.Adapter2;
55@XmlAccessorType(XmlAccessType.FIELD)
56@XmlType(name =
"UnitDetail", propOrder = {
59 "shipmentUnitReference",
72 @XmlElement(name =
"TrackID", required =
true)
73 protected String trackID;
74 @XmlElement(name = "ShipmentReference")
75 protected List<String> shipmentReference;
76 @XmlElement(name = "ShipmentUnitReference")
77 protected List<String> shipmentUnitReference;
78 @XmlElement(name = "Weight", required = true, type = String.class)
80 @XmlSchemaType(name = "decimal")
81 protected BigDecimal weight;
82 @XmlElement(name = "DeliveryDate", type = String.class)
84 @XmlSchemaType(name = "dateTime")
85 protected Date deliveryDate;
86 @XmlElement(name = "Signature")
87 protected String signature;
88 @XmlElement(name = "Product", required = true)
89 @XmlSchemaType(name = "
string")
91 @XmlElement(name = "
Consignee", required = true)
93 @XmlElement(name = "
Shipper", required = true)
95 @XmlElement(name = "Service")
99 @XmlElement(name = "History")
110 public String getTrackID() {
123 this.trackID = value;
149 if (shipmentReference ==
null) {
150 shipmentReference =
new ArrayList<String>();
152 return this.shipmentReference;
178 if (shipmentUnitReference ==
null) {
179 shipmentUnitReference =
new ArrayList<String>();
181 return this.shipmentUnitReference;
229 this.deliveryDate = value;
253 this.signature = value;
277 this.product = value;
301 this.consignee = value;
325 this.shipper = value;
351 if (service ==
null) {
352 service =
new ArrayList<UnitService>();
380 if (shipmentService ==
null) {
381 shipmentService =
new ArrayList<ShipmentService>();
383 return this.shipmentService;
409 if (history ==
null) {
410 history =
new ArrayList<TUHistory>();
void setDeliveryDate(Date value)
void setShipper(Shipper value)
List< TUHistory > getHistory()
List< String > getShipmentUnitReference()
List< UnitService > getService()
void setConsignee(Consignee value)
List< String > getShipmentReference()
List< ShipmentService > getShipmentService()
void setProduct(ProductType value)
void setSignature(String value)
void setTrackID(String value)
void setWeight(BigDecimal value)