GLS ShipIT  3.0.6
GLS ShipIT - SOAP services
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;
12 
13 
41 @XmlAccessorType(XmlAccessType.FIELD)
42 @XmlType(name = "RoutingInfo", propOrder = {
43  "tour",
44  "inboundSortingFlag",
45  "finalLocationCode",
46  "pickupLocationCode",
47  "hubLocation",
48  "lastRoutingDate"
49 })
50 public class RoutingInfo {
51 
52  @XmlElement(name = "Tour", required = true)
53  protected String tour;
54  @XmlElement(name = "InboundSortingFlag", required = true)
55  protected String inboundSortingFlag;
56  @XmlElement(name = "FinalLocationCode", required = true)
57  protected String finalLocationCode;
58  @XmlElement(name = "PickupLocationCode")
59  protected String pickupLocationCode;
60  @XmlElement(name = "HubLocation", required = true)
61  protected String hubLocation;
62  @XmlElement(name = "LastRoutingDate", required = true, type = String.class)
63  @XmlJavaTypeAdapter(Adapter2 .class)
64  @XmlSchemaType(name = "date")
65  protected Date lastRoutingDate;
66 
75  public String getTour() {
76  return tour;
77  }
78 
87  public void setTour(String value) {
88  this.tour = value;
89  }
90 
99  public String getInboundSortingFlag() {
100  return inboundSortingFlag;
101  }
102 
111  public void setInboundSortingFlag(String value) {
112  this.inboundSortingFlag = value;
113  }
114 
123  public String getFinalLocationCode() {
124  return finalLocationCode;
125  }
126 
135  public void setFinalLocationCode(String value) {
136  this.finalLocationCode = value;
137  }
138 
147  public String getPickupLocationCode() {
148  return pickupLocationCode;
149  }
150 
159  public void setPickupLocationCode(String value) {
160  this.pickupLocationCode = value;
161  }
162 
171  public String getHubLocation() {
172  return hubLocation;
173  }
174 
183  public void setHubLocation(String value) {
184  this.hubLocation = value;
185  }
186 
195  public Date getLastRoutingDate() {
196  return lastRoutingDate;
197  }
198 
207  public void setLastRoutingDate(Date value) {
208  this.lastRoutingDate = value;
209  }
210 
211 }