GLS ShipIT  2.8.11
GLS ShipIT - REST services
RoutingInfo.java
Go to the documentation of this file.
1 
2 package eu.glsgroup.fpcs.datatypes.soap.v1.shipmentprocessing;
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 
40 @XmlAccessorType(XmlAccessType.FIELD)
41 @XmlType(name = "RoutingInfo", propOrder = {
42  "tour",
43  "inboundSortingFlag",
44  "finalLocationCode",
45  "pickupLocationCode",
46  "hubLocation",
47  "lastRoutingDate"
48 })
49 public class RoutingInfo {
50 
51  @XmlElement(name = "Tour", required = true)
52  protected String tour;
53  @XmlElement(name = "InboundSortingFlag", required = true)
54  protected String inboundSortingFlag;
55  @XmlElement(name = "FinalLocationCode", required = true)
56  protected String finalLocationCode;
57  @XmlElement(name = "PickupLocationCode")
58  protected String pickupLocationCode;
59  @XmlElement(name = "HubLocation", required = true)
60  protected String hubLocation;
61  @XmlElement(name = "LastRoutingDate", required = true, type = String.class)
62  @XmlJavaTypeAdapter(Adapter2.class)
63  @XmlSchemaType(name = "date")
64  protected Date lastRoutingDate;
65 
74  public String getTour() {
75  return tour;
76  }
77 
86  public void setTour(String value) {
87  this.tour = value;
88  }
89 
98  public String getInboundSortingFlag() {
99  return inboundSortingFlag;
100  }
101 
110  public void setInboundSortingFlag(String value) {
111  this.inboundSortingFlag = value;
112  }
113 
122  public String getFinalLocationCode() {
123  return finalLocationCode;
124  }
125 
134  public void setFinalLocationCode(String value) {
135  this.finalLocationCode = value;
136  }
137 
146  public String getPickupLocationCode() {
147  return pickupLocationCode;
148  }
149 
158  public void setPickupLocationCode(String value) {
159  this.pickupLocationCode = value;
160  }
161 
170  public String getHubLocation() {
171  return hubLocation;
172  }
173 
182  public void setHubLocation(String value) {
183  this.hubLocation = value;
184  }
185 
194  public Date getLastRoutingDate() {
195  return lastRoutingDate;
196  }
197 
206  public void setLastRoutingDate(Date value) {
207  this.lastRoutingDate = value;
208  }
209 
210 }