2 package eu.glsgroup.fpcs.datatypes.soap.v2.shipmentprocessing;
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;
40 @XmlAccessorType(XmlAccessType.FIELD)
41 @XmlType(name =
"RoutingInfo", propOrder = {
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)
60 @XmlSchemaType(name = "date")
61 protected Date lastRoutingDate;
71 public String getTour() {
96 return inboundSortingFlag;
108 this.inboundSortingFlag = value;
120 return finalLocationCode;
132 this.finalLocationCode = value;
156 this.hubLocation = value;
168 return lastRoutingDate;
180 this.lastRoutingDate = value;
void setFinalLocationCode(String value)
void setInboundSortingFlag(String value)
String getFinalLocationCode()
void setTour(String value)
String getInboundSortingFlag()
void setHubLocation(String value)
void setLastRoutingDate(Date value)
Date getLastRoutingDate()