GLS ShipIT 4.0.f2
GLS ShipIT - REST services
Loading...
Searching...
No Matches
glsgroup/fpcs/datatypes/soap/v1/shipmentprocessing/Document.java
Go to the documentation of this file.
1
2package eu.glsgroup.fpcs.datatypes.soap.v1.shipmentprocessing;
3
4import javax.xml.bind.annotation.XmlAccessType;
5import javax.xml.bind.annotation.XmlAccessorType;
6import javax.xml.bind.annotation.XmlElement;
7import javax.xml.bind.annotation.XmlSchemaType;
8import javax.xml.bind.annotation.XmlType;
9
10
37@XmlAccessorType(XmlAccessType.FIELD)
38@XmlType(name = "Document", propOrder = {
39 "data",
40 "labelFormat",
41 "qrFormat"
42})
43public class Document {
44
45 @XmlElement(name = "Data", required = true)
46 protected byte[] data;
47 @XmlElement(name = "LabelFormat")
48 @XmlSchemaType(name = "string")
49 protected LabelFormat labelFormat;
50 @XmlElement(name = "QRFormat")
51 @XmlSchemaType(name = "string")
52 protected QRFormat qrFormat;
53
61 public byte[] getData() {
62 return data;
63 }
64
72 public void setData(byte[] value) {
73 this.data = value;
74 }
75
85 return labelFormat;
86 }
87
96 public void setLabelFormat(LabelFormat value) {
97 this.labelFormat = value;
98 }
99
109 return qrFormat;
110 }
111
120 public void setQRFormat(QRFormat value) {
121 this.qrFormat = value;
122 }
123
124}