GLS ShipIT  4.0.f3
GLS ShipIT - SOAP services
gls_group/fpcs/v1/shipmentprocessing/types/ReprintParcelRequestParameter.java
Go to the documentation of this file.
1 
2 package eu.gls_group.fpcs.v1.shipmentprocessing.types;
3 
4 import java.util.Date;
5 import javax.xml.bind.annotation.XmlAccessType;
6 import javax.xml.bind.annotation.XmlAccessorType;
7 import javax.xml.bind.annotation.XmlElement;
8 import javax.xml.bind.annotation.XmlRootElement;
9 import javax.xml.bind.annotation.XmlSchemaType;
10 import javax.xml.bind.annotation.XmlType;
11 import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
14 
15 
48 @XmlAccessorType(XmlAccessType.FIELD)
49 @XmlType(name = "", propOrder = {
50  "trackID",
51  "parcelNumber",
52  "shipmentReference",
53  "shipmentUnitReference",
54  "partnerParcelNumber",
55  "nationalParcelNumber",
56  "nationalParcelData",
57  "creationDate",
58  "printingOptions",
59  "returnOptions",
60  "customContent"
61 })
62 @XmlRootElement(name = "ReprintParcelRequestParameter")
64 
65  @XmlElement(name = "TrackID")
66  protected String trackID;
67  @XmlElement(name = "ParcelNumber")
68  protected String parcelNumber;
69  @XmlElement(name = "ShipmentReference")
70  protected String shipmentReference;
71  @XmlElement(name = "ShipmentUnitReference")
72  protected String shipmentUnitReference;
73  @XmlElement(name = "PartnerParcelNumber")
74  protected String partnerParcelNumber;
75  @XmlElement(name = "NationalParcelNumber")
76  protected String nationalParcelNumber;
77  @XmlElement(name = "NationalParcelData")
78  protected NationalParcelData nationalParcelData;
79  @XmlElement(name = "CreationDate", type = String.class)
80  @XmlJavaTypeAdapter(Adapter3 .class)
81  @XmlSchemaType(name = "date")
82  protected Date creationDate;
83  @XmlElement(name = "PrintingOptions")
84  protected PrintingOptions printingOptions;
85  @XmlElement(name = "ReturnOptions")
86  protected ReturnOptions returnOptions;
87  @XmlElement(name = "CustomContent")
88  protected CustomContent customContent;
89 
98  public String getTrackID() {
99  return trackID;
100  }
101 
110  public void setTrackID(String value) {
111  this.trackID = value;
112  }
113 
122  public String getParcelNumber() {
123  return parcelNumber;
124  }
125 
134  public void setParcelNumber(String value) {
135  this.parcelNumber = value;
136  }
137 
146  public String getShipmentReference() {
147  return shipmentReference;
148  }
149 
158  public void setShipmentReference(String value) {
159  this.shipmentReference = value;
160  }
161 
170  public String getShipmentUnitReference() {
171  return shipmentUnitReference;
172  }
173 
182  public void setShipmentUnitReference(String value) {
183  this.shipmentUnitReference = value;
184  }
185 
194  public String getPartnerParcelNumber() {
195  return partnerParcelNumber;
196  }
197 
206  public void setPartnerParcelNumber(String value) {
207  this.partnerParcelNumber = value;
208  }
209 
218  public String getNationalParcelNumber() {
219  return nationalParcelNumber;
220  }
221 
230  public void setNationalParcelNumber(String value) {
231  this.nationalParcelNumber = value;
232  }
233 
243  return nationalParcelData;
244  }
245 
255  this.nationalParcelData = value;
256  }
257 
266  public Date getCreationDate() {
267  return creationDate;
268  }
269 
278  public void setCreationDate(Date value) {
279  this.creationDate = value;
280  }
281 
291  return printingOptions;
292  }
293 
302  public void setPrintingOptions(PrintingOptions value) {
303  this.printingOptions = value;
304  }
305 
315  return returnOptions;
316  }
317 
326  public void setReturnOptions(ReturnOptions value) {
327  this.returnOptions = value;
328  }
329 
339  return customContent;
340  }
341 
350  public void setCustomContent(CustomContent value) {
351  this.customContent = value;
352  }
353 
354 }