GLS ShipIT  2.8.11
GLS ShipIT - REST services
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 
32 @XmlAccessorType(XmlAccessType.FIELD)
33 @XmlType(name = "ReturnLabels", propOrder = {
34  "templateSet",
35  "labelFormat"
36 })
37 public class ReturnLabels {
38 
39  @XmlElement(name = "TemplateSet", required = true)
40  protected TemplateSet templateSet;
41  @XmlElement(name = "LabelFormat", required = true)
42  protected LabelFormat labelFormat;
43 
52  public TemplateSet getTemplateSet() {
53  return templateSet;
54  }
55 
64  public void setTemplateSet(TemplateSet value) {
65  this.templateSet = value;
66  }
67 
77  return labelFormat;
78  }
79 
88  public void setLabelFormat(LabelFormat value) {
89  this.labelFormat = value;
90  }
91 
92 }