GLS ShipIT  3.5.15
GLS ShipIT - SOAP services
glsgroup/fpcs/datatypes/soap/v1/shipmentprocessing/ParcelData.java
Go to the documentation of this file.
1 
2 package eu.glsgroup.fpcs.datatypes.soap.v1.shipmentprocessing;
3 
4 import java.util.ArrayList;
5 import java.util.List;
6 import javax.xml.bind.annotation.XmlAccessType;
7 import javax.xml.bind.annotation.XmlAccessorType;
8 import javax.xml.bind.annotation.XmlElement;
9 import javax.xml.bind.annotation.XmlType;
10 
11 
47 @XmlAccessorType(XmlAccessType.FIELD)
48 @XmlType(name = "ParcelData", propOrder = {
49  "trackID",
50  "partnerParcelNumber",
51  "exchangeParcelID",
52  "shipmentUnitReference",
53  "parcelNumber",
54  "barcodes",
55  "routingInfo",
56  "expressData",
57  "serviceArea",
58  "ndiArea",
59  "handlingInformation",
60  "mondialRelayArea"
61 })
62 public class ParcelData {
63 
64  @XmlElement(name = "TrackID", required = true)
65  protected String trackID;
66  @XmlElement(name = "PartnerParcelNumber")
67  protected String partnerParcelNumber;
68  @XmlElement(name = "ExchangeParcelID")
69  protected String exchangeParcelID;
70  @XmlElement(name = "ShipmentUnitReference")
71  protected List<String> shipmentUnitReference;
72  @XmlElement(name = "ParcelNumber", required = true)
73  protected String parcelNumber;
74  @XmlElement(name = "Barcodes")
75  protected Barcodes barcodes;
76  @XmlElement(name = "RoutingInfo")
77  protected RoutingInfo routingInfo;
78  @XmlElement(name = "ExpressData")
79  protected ExpressData expressData;
80  @XmlElement(name = "ServiceArea")
81  protected ServiceArea serviceArea;
82  @XmlElement(name = "NDIArea")
83  protected NDIArea ndiArea;
84  @XmlElement(name = "HandlingInformation")
85  protected String handlingInformation;
86  @XmlElement(name = "MondialRelayArea")
87  protected MondialRelayArea mondialRelayArea;
88 
97  public String getTrackID() {
98  return trackID;
99  }
100 
109  public void setTrackID(String value) {
110  this.trackID = value;
111  }
112 
121  public String getPartnerParcelNumber() {
122  return partnerParcelNumber;
123  }
124 
133  public void setPartnerParcelNumber(String value) {
134  this.partnerParcelNumber = value;
135  }
136 
145  public String getExchangeParcelID() {
146  return exchangeParcelID;
147  }
148 
157  public void setExchangeParcelID(String value) {
158  this.exchangeParcelID = value;
159  }
160 
183  public List<String> getShipmentUnitReference() {
184  if (shipmentUnitReference == null) {
185  shipmentUnitReference = new ArrayList<String>();
186  }
187  return this.shipmentUnitReference;
188  }
189 
198  public String getParcelNumber() {
199  return parcelNumber;
200  }
201 
210  public void setParcelNumber(String value) {
211  this.parcelNumber = value;
212  }
213 
223  return barcodes;
224  }
225 
234  public void setBarcodes(Barcodes value) {
235  this.barcodes = value;
236  }
237 
247  return routingInfo;
248  }
249 
258  public void setRoutingInfo(RoutingInfo value) {
259  this.routingInfo = value;
260  }
261 
271  return expressData;
272  }
273 
282  public void setExpressData(ExpressData value) {
283  this.expressData = value;
284  }
285 
295  return serviceArea;
296  }
297 
306  public void setServiceArea(ServiceArea value) {
307  this.serviceArea = value;
308  }
309 
318  public NDIArea getNDIArea() {
319  return ndiArea;
320  }
321 
330  public void setNDIArea(NDIArea value) {
331  this.ndiArea = value;
332  }
333 
342  public String getHandlingInformation() {
343  return handlingInformation;
344  }
345 
354  public void setHandlingInformation(String value) {
355  this.handlingInformation = value;
356  }
357 
367  return mondialRelayArea;
368  }
369 
379  this.mondialRelayArea = value;
380  }
381 
382 }