GLS ShipIT 4.0.f2
GLS ShipIT - SOAP services
Loading...
Searching...
No Matches
TULReferenceData.java
Go to the documentation of this file.
1
2package eu.glsgroup.fpcs.datatypes.soap.v1.tracking;
3
4import java.util.Date;
5import javax.xml.bind.annotation.XmlAccessType;
6import javax.xml.bind.annotation.XmlAccessorType;
7import javax.xml.bind.annotation.XmlElement;
8import javax.xml.bind.annotation.XmlRootElement;
9import javax.xml.bind.annotation.XmlSchemaType;
10import javax.xml.bind.annotation.XmlType;
11import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
12import org.w3._2001.xmlschema.Adapter3;
13
14
45@XmlAccessorType(XmlAccessType.FIELD)
46@XmlType(name = "", propOrder = {
47 "trackID",
48 "shipmentReference",
49 "shipmentUnitReference",
50 "parcelNumber",
51 "partnerParcelNumber",
52 "dateFrom",
53 "dateTo"
54})
55@XmlRootElement(name = "TULReferenceData")
56public class TULReferenceData {
57
58 @XmlElement(name = "TrackID")
59 protected String trackID;
60 @XmlElement(name = "ShipmentReference")
61 protected String shipmentReference;
62 @XmlElement(name = "ShipmentUnitReference")
63 protected String shipmentUnitReference;
64 @XmlElement(name = "ParcelNumber")
65 protected String parcelNumber;
66 @XmlElement(name = "PartnerParcelNumber")
67 protected String partnerParcelNumber;
68 @XmlElement(name = "DateFrom", required = true, type = String.class)
69 @XmlJavaTypeAdapter(Adapter3 .class)
70 @XmlSchemaType(name = "date")
71 protected Date dateFrom;
72 @XmlElement(name = "DateTo", required = true, type = String.class)
73 @XmlJavaTypeAdapter(Adapter3 .class)
74 @XmlSchemaType(name = "date")
75 protected Date dateTo;
76
85 public String getTrackID() {
86 return trackID;
87 }
88
97 public void setTrackID(String value) {
98 this.trackID = value;
99 }
100
109 public String getShipmentReference() {
110 return shipmentReference;
111 }
112
121 public void setShipmentReference(String value) {
122 this.shipmentReference = value;
123 }
124
133 public String getShipmentUnitReference() {
134 return shipmentUnitReference;
135 }
136
145 public void setShipmentUnitReference(String value) {
146 this.shipmentUnitReference = value;
147 }
148
157 public String getParcelNumber() {
158 return parcelNumber;
159 }
160
169 public void setParcelNumber(String value) {
170 this.parcelNumber = value;
171 }
172
181 public String getPartnerParcelNumber() {
182 return partnerParcelNumber;
183 }
184
193 public void setPartnerParcelNumber(String value) {
194 this.partnerParcelNumber = value;
195 }
196
205 public Date getDateFrom() {
206 return dateFrom;
207 }
208
217 public void setDateFrom(Date value) {
218 this.dateFrom = value;
219 }
220
229 public Date getDateTo() {
230 return dateTo;
231 }
232
241 public void setDateTo(Date value) {
242 this.dateTo = value;
243 }
244
245}