GLS ShipIT  2.8.11
GLS ShipIT - REST services
Document.java
Go to the documentation of this file.
1 
2 package eu.glsgroup.fpcs.datatypes.soap.v1.shipmentprocessing;
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 
33 @XmlAccessorType(XmlAccessType.FIELD)
34 @XmlType(name = "Document", propOrder = {
35  "data",
36  "labelFormat"
37 })
38 public class Document {
39 
40  @XmlElement(name = "Data", required = true)
41  protected byte[] data;
42  @XmlElement(name = "LabelFormat", required = true)
43  protected LabelFormat labelFormat;
44 
52  public byte[] getData() {
53  return data;
54  }
55 
63  public void setData(byte[] value) {
64  this.data = value;
65  }
66 
76  return labelFormat;
77  }
78 
87  public void setLabelFormat(LabelFormat value) {
88  this.labelFormat = value;
89  }
90 
91 }