2 package eu.glsgroup.fpcs.datatypes.soap.v1.tracking;
     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.XmlRootElement;
    10 import javax.xml.bind.annotation.XmlSchemaType;
    11 import javax.xml.bind.annotation.XmlType;
    12 import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
    13 import java.util.Date;
    40 @XmlAccessorType(XmlAccessType.FIELD)
    41 @XmlType(name = 
"", propOrder = {
    44     "shipmentUnitReference",
    48 @XmlRootElement(name = 
"TULReferenceData")
    51     @XmlElement(name = 
"TrackID")
    52     protected String trackID;
    53     @XmlElement(name = "ShipmentReference")
    54     protected String shipmentReference;
    55     @XmlElement(name = "ShipmentUnitReference")
    56     protected String shipmentUnitReference;
    57     @XmlElement(name = "DateFrom", required = true, type = String.class)
    59     @XmlSchemaType(name = "date")
    60     protected Date dateFrom;
    61     @XmlElement(name = "DateTo", required = true, type = String.class)
    63     @XmlSchemaType(name = "date")
    64     protected Date dateTo;
    74     public String getTrackID() {
    99         return shipmentReference;
   111         this.shipmentReference = value;
   123         return shipmentUnitReference;
   135         this.shipmentUnitReference = value;
   159         this.dateFrom = value;
 void setShipmentReference(String value)
void setDateFrom(Date value)
String getShipmentUnitReference()
String getShipmentReference()
void setTrackID(String value)
void setShipmentUnitReference(String value)
void setDateTo(Date value)