GLS ShipIT
GLS ShipIT - REST services
 All Classes Namespaces Files Functions Variables Enumerator Pages
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 
35 @XmlAccessorType(XmlAccessType.FIELD)
36 @XmlType(name = "Document", propOrder = {
37  "data",
38  "labelFormat"
39 })
40 public class Document {
41 
42  @XmlElement(name = "Data", required = true)
43  protected byte[] data;
44  @XmlElement(name = "LabelFormat", required = true)
45  protected LabelFormat labelFormat;
46 
54  public byte[] getData() {
55  return data;
56  }
57 
65  public void setData(byte[] value) {
66  this.data = value;
67  }
68 
78  return labelFormat;
79  }
80 
89  public void setLabelFormat(LabelFormat value) {
90  this.labelFormat = value;
91  }
92 
93 }