GLS ShipIT  3.5.15
GLS ShipIT - REST services
Labels.java
Go to the documentation of this file.
1 
2 package eu.glsgroup.fpcs.datatypes.soap.v2.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 
35 @XmlAccessorType(XmlAccessType.FIELD)
36 @XmlType(name = "Labels", propOrder = {
37  "templateSet",
38  "labelFormat"
39 })
40 public class Labels {
41 
42  @XmlElement(name = "TemplateSet", required = true)
43  @XmlSchemaType(name = "string")
44  protected TemplateSet templateSet;
45  @XmlElement(name = "LabelFormat", required = true)
46  @XmlSchemaType(name = "string")
47  protected LabelFormat labelFormat;
48 
57  public TemplateSet getTemplateSet() {
58  return templateSet;
59  }
60 
69  public void setTemplateSet(TemplateSet value) {
70  this.templateSet = value;
71  }
72 
82  return labelFormat;
83  }
84 
93  public void setLabelFormat(LabelFormat value) {
94  this.labelFormat = value;
95  }
96 
97 }