GLS ShipIT  3.3.20
GLS ShipIT - SOAP 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.XmlSchemaType;
8 import javax.xml.bind.annotation.XmlType;
9 
10 
36 @XmlAccessorType(XmlAccessType.FIELD)
37 @XmlType(name = "Document", propOrder = {
38  "data",
39  "labelFormat"
40 })
41 public class Document {
42 
43  @XmlElement(name = "Data", required = true)
44  protected byte[] data;
45  @XmlElement(name = "LabelFormat", required = true)
46  @XmlSchemaType(name = "string")
47  protected LabelFormat labelFormat;
48 
56  public byte[] getData() {
57  return data;
58  }
59 
67  public void setData(byte[] value) {
68  this.data = value;
69  }
70 
80  return labelFormat;
81  }
82 
91  public void setLabelFormat(LabelFormat value) {
92  this.labelFormat = value;
93  }
94 
95 }