GLS ShipIT  2.8.11
GLS ShipIT - REST services
TUHistory.java
Go to the documentation of this file.
1 
2 package eu.glsgroup.fpcs.datatypes.soap.v1.tracking;
3 
5 
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.XmlSchemaType;
10 import javax.xml.bind.annotation.XmlType;
11 import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
12 import java.util.Date;
13 
14 
39 @XmlAccessorType(XmlAccessType.FIELD)
40 @XmlType(name = "TUHistory", propOrder = {
41  "date",
42  "locationCode",
43  "location",
44  "country",
45  "statusCode",
46  "description"
47 })
48 public class TUHistory {
49 
50  @XmlElement(name = "Date", required = true, type = String.class)
51  @XmlJavaTypeAdapter(Adapter1.class)
52  @XmlSchemaType(name = "dateTime")
53  protected Date date;
54  @XmlElement(name = "LocationCode", required = true)
55  protected String locationCode;
56  @XmlElement(name = "Location", required = true)
57  protected String location;
58  @XmlElement(name = "Country", required = true)
59  protected String country;
60  @XmlElement(name = "StatusCode", required = true)
61  protected String statusCode;
62  @XmlElement(name = "Description", required = true)
63  protected String description;
64 
73  public Date getDate() {
74  return date;
75  }
76 
85  public void setDate(Date value) {
86  this.date = value;
87  }
88 
97  public String getLocationCode() {
98  return locationCode;
99  }
100 
109  public void setLocationCode(String value) {
110  this.locationCode = value;
111  }
112 
121  public String getLocation() {
122  return location;
123  }
124 
133  public void setLocation(String value) {
134  this.location = value;
135  }
136 
145  public String getCountry() {
146  return country;
147  }
148 
157  public void setCountry(String value) {
158  this.country = value;
159  }
160 
169  public String getStatusCode() {
170  return statusCode;
171  }
172 
181  public void setStatusCode(String value) {
182  this.statusCode = value;
183  }
184 
193  public String getDescription() {
194  return description;
195  }
196 
205  public void setDescription(String value) {
206  this.description = value;
207  }
208 
209 }