2 package eu.glsgroup.fpcs.datatypes.soap.v1.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;
41 @XmlAccessorType(XmlAccessType.FIELD)
42 @XmlType(name =
"RoutingInfo", propOrder = {
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)
64 @XmlSchemaType(name = "date")
65 protected Date lastRoutingDate;
75 public String getTour() {
100 return inboundSortingFlag;
112 this.inboundSortingFlag = value;
124 return finalLocationCode;
136 this.finalLocationCode = value;
148 return pickupLocationCode;
160 this.pickupLocationCode = value;
184 this.hubLocation = value;
196 return lastRoutingDate;
208 this.lastRoutingDate = value;
void setLastRoutingDate(Date value)
void setTour(String value)
void setHubLocation(String value)
String getPickupLocationCode()
String getInboundSortingFlag()
void setFinalLocationCode(String value)
Date getLastRoutingDate()
void setInboundSortingFlag(String value)
String getFinalLocationCode()
void setPickupLocationCode(String value)