GLS ShipIT  2.8.11
GLS ShipIT - REST services
tracking/PODItem.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.XmlType;
8 
9 
31 @XmlAccessorType(XmlAccessType.FIELD)
32 @XmlType(name = "PODItem", propOrder = {
33  "trackID",
34  "imageData"
35 })
36 public class PODItem {
37 
38  @XmlElement(name = "TrackID", required = true)
39  protected String trackID;
40  @XmlElement(name = "ImageData", required = true)
41  protected byte[] imageData;
42 
51  public String getTrackID() {
52  return trackID;
53  }
54 
63  public void setTrackID(String value) {
64  this.trackID = value;
65  }
66 
74  public byte[] getImageData() {
75  return imageData;
76  }
77 
85  public void setImageData(byte[] value) {
86  this.imageData = value;
87  }
88 
89 }