GLS ShipIT 4.0.f2
GLS ShipIT - SOAP services
Loading...
Searching...
No Matches
glsgroup/fpcs/datatypes/soap/v2/shipmentprocessing/RoutingInfo.java
Go to the documentation of this file.
1
2package eu.glsgroup.fpcs.datatypes.soap.v2.shipmentprocessing;
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.Adapter3;
12
13
40@XmlAccessorType(XmlAccessType.FIELD)
41@XmlType(name = "RoutingInfo", propOrder = {
42 "tour",
43 "inboundSortingFlag",
44 "finalLocationCode",
45 "hubLocation",
46 "lastRoutingDate"
47})
48public class RoutingInfo {
49
50 @XmlElement(name = "Tour", required = true)
51 protected String tour;
52 @XmlElement(name = "InboundSortingFlag", required = true)
53 protected String inboundSortingFlag;
54 @XmlElement(name = "FinalLocationCode", required = true)
55 protected String finalLocationCode;
56 @XmlElement(name = "HubLocation", required = true)
57 protected String hubLocation;
58 @XmlElement(name = "LastRoutingDate", required = true, type = String.class)
59 @XmlJavaTypeAdapter(Adapter3 .class)
60 @XmlSchemaType(name = "date")
61 protected Date lastRoutingDate;
62
71 public String getTour() {
72 return tour;
73 }
74
83 public void setTour(String value) {
84 this.tour = value;
85 }
86
95 public String getInboundSortingFlag() {
96 return inboundSortingFlag;
97 }
98
107 public void setInboundSortingFlag(String value) {
108 this.inboundSortingFlag = value;
109 }
110
119 public String getFinalLocationCode() {
120 return finalLocationCode;
121 }
122
131 public void setFinalLocationCode(String value) {
132 this.finalLocationCode = value;
133 }
134
143 public String getHubLocation() {
144 return hubLocation;
145 }
146
155 public void setHubLocation(String value) {
156 this.hubLocation = value;
157 }
158
167 public Date getLastRoutingDate() {
168 return lastRoutingDate;
169 }
170
179 public void setLastRoutingDate(Date value) {
180 this.lastRoutingDate = value;
181 }
182
183}