GLS ShipIT 4.0.f2
GLS ShipIT - REST services
Loading...
Searching...
No Matches
parcelshop/PODItem.java
Go to the documentation of this file.
1
2package eu.glsgroup.fpcs.datatypes.soap.v1.parcelshop;
3
4import javax.xml.bind.annotation.XmlAccessType;
5import javax.xml.bind.annotation.XmlAccessorType;
6import javax.xml.bind.annotation.XmlElement;
7import javax.xml.bind.annotation.XmlType;
8
9
34@XmlAccessorType(XmlAccessType.FIELD)
35@XmlType(name = "PODItem", propOrder = {
36 "referenceNumber",
37 "imageName",
38 "imageData"
39})
40public class PODItem {
41
42 @XmlElement(name = "ReferenceNumber", required = true)
43 protected String referenceNumber;
44 @XmlElement(name = "ImageName", required = true)
45 protected String imageName;
46 @XmlElement(name = "ImageData", required = true)
47 protected byte[] imageData;
48
57 public String getReferenceNumber() {
58 return referenceNumber;
59 }
60
69 public void setReferenceNumber(String value) {
70 this.referenceNumber = value;
71 }
72
81 public String getImageName() {
82 return imageName;
83 }
84
93 public void setImageName(String value) {
94 this.imageName = value;
95 }
96
104 public byte[] getImageData() {
105 return imageData;
106 }
107
115 public void setImageData(byte[] value) {
116 this.imageData = value;
117 }
118
119}