2package eu.gls_group.fpcs.v1.shipmentprocessing.types;
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;
44@XmlAccessorType(XmlAccessType.FIELD)
45@XmlType(name =
"RoutingInfo", propOrder = {
58 @XmlElement(name =
"Tour", required =
true)
59 protected String tour;
60 @XmlElement(name = "InboundSortingFlag", required = true)
61 protected String inboundSortingFlag;
62 @XmlElement(name = "FinalLocationCode", required = true)
63 protected String finalLocationCode;
64 @XmlElement(name = "PickupLocationCode")
65 protected String pickupLocationCode;
66 @XmlElement(name = "HubLocation", required = true)
67 protected String hubLocation;
68 @XmlElement(name = "LastRoutingDate", required = true, type = String.class)
70 @XmlSchemaType(name = "date")
71 protected Date lastRoutingDate;
72 @XmlElement(name = "GeoTour")
73 protected String geoTour;
74 @XmlElement(name = "LoadingArea")
75 protected String loadingArea;
76 @XmlElement(name = "DispositionFlag")
77 protected String dispositionFlag;
87 public String getTour() {
112 return inboundSortingFlag;
124 this.inboundSortingFlag = value;
136 return finalLocationCode;
148 this.finalLocationCode = value;
160 return pickupLocationCode;
172 this.pickupLocationCode = value;
196 this.hubLocation = value;
208 return lastRoutingDate;
220 this.lastRoutingDate = value;
244 this.geoTour = value;
268 this.loadingArea = value;
280 return dispositionFlag;
292 this.dispositionFlag = value;
String getFinalLocationCode()
void setDispositionFlag(String value)
void setLoadingArea(String value)
Date getLastRoutingDate()
String getInboundSortingFlag()
void setTour(String value)
void setGeoTour(String value)
String getDispositionFlag()
void setLastRoutingDate(Date value)
String getPickupLocationCode()
void setInboundSortingFlag(String value)
void setFinalLocationCode(String value)
void setPickupLocationCode(String value)
void setHubLocation(String value)