GLS ShipIT
GLS ShipIT - REST services
 All Classes Namespaces Files Functions Variables Enumerator Pages
RoutingInfo.java
Go to the documentation of this file.
1 
2 package eu.glsgroup.fpcs.datatypes.soap.v1.shipmentprocessing;
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.XmlSchemaType;
9 import javax.xml.bind.annotation.XmlType;
10 import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
11 import org.w3._2001.xmlschema.Adapter2;
12 
13 
44 @XmlAccessorType(XmlAccessType.FIELD)
45 @XmlType(name = "RoutingInfo", propOrder = {
46  "tour",
47  "inboundSortingFlag",
48  "finalLocationCode",
49  "pickupLocationCode",
50  "hubLocation",
51  "lastRoutingDate",
52  "geoTour",
53  "loadingArea",
54  "dispositionFlag"
55 })
56 public class RoutingInfo {
57 
58  @XmlElement(name = "Tour", required = true)
59  protected String tour;
60  @XmlElement(name = "InboundSortingFlag", required = true)
61  protected String inboundSortingFlag;
62  @XmlElement(name = "FinalLocationCode", required = true)
63  protected String finalLocationCode;
64  @XmlElement(name = "PickupLocationCode")
65  protected String pickupLocationCode;
66  @XmlElement(name = "HubLocation", required = true)
67  protected String hubLocation;
68  @XmlElement(name = "LastRoutingDate", required = true, type = String.class)
69  @XmlJavaTypeAdapter(Adapter2 .class)
70  @XmlSchemaType(name = "date")
71  protected Date lastRoutingDate;
72  @XmlElement(name = "GeoTour")
73  protected String geoTour;
74  @XmlElement(name = "LoadingArea")
75  protected String loadingArea;
76  @XmlElement(name = "DispositionFlag")
77  protected String dispositionFlag;
78 
87  public String getTour() {
88  return tour;
89  }
90 
99  public void setTour(String value) {
100  this.tour = value;
101  }
102 
111  public String getInboundSortingFlag() {
112  return inboundSortingFlag;
113  }
114 
123  public void setInboundSortingFlag(String value) {
124  this.inboundSortingFlag = value;
125  }
126 
135  public String getFinalLocationCode() {
136  return finalLocationCode;
137  }
138 
147  public void setFinalLocationCode(String value) {
148  this.finalLocationCode = value;
149  }
150 
159  public String getPickupLocationCode() {
160  return pickupLocationCode;
161  }
162 
171  public void setPickupLocationCode(String value) {
172  this.pickupLocationCode = value;
173  }
174 
183  public String getHubLocation() {
184  return hubLocation;
185  }
186 
195  public void setHubLocation(String value) {
196  this.hubLocation = value;
197  }
198 
207  public Date getLastRoutingDate() {
208  return lastRoutingDate;
209  }
210 
219  public void setLastRoutingDate(Date value) {
220  this.lastRoutingDate = value;
221  }
222 
231  public String getGeoTour() {
232  return geoTour;
233  }
234 
243  public void setGeoTour(String value) {
244  this.geoTour = value;
245  }
246 
255  public String getLoadingArea() {
256  return loadingArea;
257  }
258 
267  public void setLoadingArea(String value) {
268  this.loadingArea = value;
269  }
270 
279  public String getDispositionFlag() {
280  return dispositionFlag;
281  }
282 
291  public void setDispositionFlag(String value) {
292  this.dispositionFlag = value;
293  }
294 
295 }