2 package eu.glsgroup.fpcs.datatypes.soap.v1.shipmentprocessing;
     6 import javax.xml.bind.annotation.XmlAccessType;
     7 import javax.xml.bind.annotation.XmlAccessorType;
     8 import javax.xml.bind.annotation.XmlElement;
     9 import javax.xml.bind.annotation.XmlSchemaType;
    10 import javax.xml.bind.annotation.XmlType;
    11 import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
    12 import java.util.Date;
    40 @XmlAccessorType(XmlAccessType.FIELD)
    41 @XmlType(name = 
"RoutingInfo", propOrder = {
    51     @XmlElement(name = 
"Tour", required = 
true)
    52     protected String tour;
    53     @XmlElement(name = "InboundSortingFlag", required = true)
    54     protected String inboundSortingFlag;
    55     @XmlElement(name = "FinalLocationCode", required = true)
    56     protected String finalLocationCode;
    57     @XmlElement(name = "PickupLocationCode")
    58     protected String pickupLocationCode;
    59     @XmlElement(name = "HubLocation", required = true)
    60     protected String hubLocation;
    61     @XmlElement(name = "LastRoutingDate", required = true, type = String.class)
    63     @XmlSchemaType(name = "date")
    64     protected Date lastRoutingDate;
    74     public String getTour() {
    99         return inboundSortingFlag;
   111         this.inboundSortingFlag = value;
   123         return finalLocationCode;
   135         this.finalLocationCode = value;
   147         return pickupLocationCode;
   159         this.pickupLocationCode = value;
   183         this.hubLocation = value;
   195         return lastRoutingDate;
   207         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)