GLS ShipIT 4.0.f2
GLS ShipIT - SOAP services
Loading...
Searching...
No Matches
PrintData.java
Go to the documentation of this file.
1
2package eu.glsgroup.fpcs.datatypes.soap.v2.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 = "PrintData", propOrder = {
39 "data",
40 "documentType",
41 "labelFormat"
42})
43public class PrintData {
44
45 @XmlElement(name = "Data", required = true)
46 protected byte[] data;
47 @XmlElement(name = "DocumentType", required = true)
48 protected String documentType;
49 @XmlElement(name = "LabelFormat", required = true)
50 @XmlSchemaType(name = "string")
51 protected LabelFormat labelFormat;
52
60 public byte[] getData() {
61 return data;
62 }
63
71 public void setData(byte[] value) {
72 this.data = value;
73 }
74
83 public String getDocumentType() {
84 return documentType;
85 }
86
95 public void setDocumentType(String value) {
96 this.documentType = value;
97 }
98
108 return labelFormat;
109 }
110
119 public void setLabelFormat(LabelFormat value) {
120 this.labelFormat = value;
121 }
122
123}