GLS ShipIT 4.0.f2
GLS ShipIT - SOAP services
Loading...
Searching...
No Matches
TUHistory.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.XmlSchemaType;
9import javax.xml.bind.annotation.XmlType;
10import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
11import org.w3._2001.xmlschema.Adapter2;
12
13
40@XmlAccessorType(XmlAccessType.FIELD)
41@XmlType(name = "TUHistory", propOrder = {
42 "date",
43 "locationCode",
44 "location",
45 "country",
46 "statusCode",
47 "description"
48})
49public class TUHistory {
50
51 @XmlElement(name = "Date", required = true, type = String.class)
52 @XmlJavaTypeAdapter(Adapter2 .class)
53 @XmlSchemaType(name = "dateTime")
54 protected Date date;
55 @XmlElement(name = "LocationCode", required = true)
56 protected String locationCode;
57 @XmlElement(name = "Location", required = true)
58 protected String location;
59 @XmlElement(name = "Country", required = true)
60 protected String country;
61 @XmlElement(name = "StatusCode", required = true)
62 protected String statusCode;
63 @XmlElement(name = "Description", required = true)
64 protected String description;
65
74 public Date getDate() {
75 return date;
76 }
77
86 public void setDate(Date value) {
87 this.date = value;
88 }
89
98 public String getLocationCode() {
99 return locationCode;
100 }
101
110 public void setLocationCode(String value) {
111 this.locationCode = value;
112 }
113
122 public String getLocation() {
123 return location;
124 }
125
134 public void setLocation(String value) {
135 this.location = value;
136 }
137
146 public String getCountry() {
147 return country;
148 }
149
158 public void setCountry(String value) {
159 this.country = value;
160 }
161
170 public String getStatusCode() {
171 return statusCode;
172 }
173
182 public void setStatusCode(String value) {
183 this.statusCode = value;
184 }
185
194 public String getDescription() {
195 return description;
196 }
197
206 public void setDescription(String value) {
207 this.description = value;
208 }
209
210}