GLS ShipIT
GLS ShipIT - REST services
 All Classes Namespaces Files Functions Variables Enumerator Pages
ReturnLabels.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 
34 @XmlAccessorType(XmlAccessType.FIELD)
35 @XmlType(name = "ReturnLabels", propOrder = {
36  "templateSet",
37  "labelFormat"
38 })
39 public class ReturnLabels {
40 
41  @XmlElement(name = "TemplateSet", required = true)
42  protected TemplateSet templateSet;
43  @XmlElement(name = "LabelFormat", required = true)
44  protected LabelFormat labelFormat;
45 
54  public TemplateSet getTemplateSet() {
55  return templateSet;
56  }
57 
66  public void setTemplateSet(TemplateSet value) {
67  this.templateSet = value;
68  }
69 
79  return labelFormat;
80  }
81 
90  public void setLabelFormat(LabelFormat value) {
91  this.labelFormat = value;
92  }
93 
94 }