GLS ShipIT  2.8.11
GLS ShipIT - SOAP services
parcelshop/PODItem.java
Go to the documentation of this file.
1 
2 package eu.glsgroup.fpcs.datatypes.soap.v1.parcelshop;
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 
32 @XmlAccessorType(XmlAccessType.FIELD)
33 @XmlType(name = "PODItem", propOrder = {
34  "referenceNumber",
35  "imageName",
36  "imageData"
37 })
38 public class PODItem {
39 
40  @XmlElement(name = "ReferenceNumber", required = true)
41  protected String referenceNumber;
42  @XmlElement(name = "ImageName", required = true)
43  protected String imageName;
44  @XmlElement(name = "ImageData", required = true)
45  protected byte[] imageData;
46 
55  public String getReferenceNumber() {
56  return referenceNumber;
57  }
58 
67  public void setReferenceNumber(String value) {
68  this.referenceNumber = value;
69  }
70 
79  public String getImageName() {
80  return imageName;
81  }
82 
91  public void setImageName(String value) {
92  this.imageName = value;
93  }
94 
102  public byte[] getImageData() {
103  return imageData;
104  }
105 
113  public void setImageData(byte[] value) {
114  this.imageData = value;
115  }
116 
117 }