GLS ShipIT
GLS ShipIT - REST services
 All Classes Namespaces Files Functions Variables Enumerator Pages
DetailsReferenceData.java
Go to the documentation of this file.
1 
2 package eu.glsgroup.fpcs.datatypes.soap.v1.tracking;
3 
4 import javax.xml.bind.annotation.XmlAccessType;
5 import javax.xml.bind.annotation.XmlAccessorType;
6 import javax.xml.bind.annotation.XmlElement;
7 import javax.xml.bind.annotation.XmlRootElement;
8 import javax.xml.bind.annotation.XmlType;
9 
10 
32 @XmlAccessorType(XmlAccessType.FIELD)
33 @XmlType(name = "", propOrder = {
34  "trackID"
35 })
36 @XmlRootElement(name = "DetailsReferenceData")
37 public class DetailsReferenceData {
38 
39  @XmlElement(name = "TrackID", required = true)
40  protected String trackID;
41 
50  public String getTrackID() {
51  return trackID;
52  }
53 
62  public void setTrackID(String value) {
63  this.trackID = value;
64  }
65 
66 }