2package eu.glsgroup.fpcs.datatypes.soap.v2.shipmentprocessing;
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;
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;
Date getLastRoutingDate()
void setTour(String value)
void setFinalLocationCode(String value)
String getFinalLocationCode()
void setLastRoutingDate(Date value)
void setHubLocation(String value)
void setInboundSortingFlag(String value)
String getInboundSortingFlag()