GLS ShipIT 4.0.f2
GLS ShipIT - SOAP services
Loading...
Searching...
No Matches
Labels.java
Go to the documentation of this file.
1
2package eu.glsgroup.fpcs.datatypes.soap.v2.shipmentprocessing;
3
4import javax.xml.bind.annotation.XmlAccessType;
5import javax.xml.bind.annotation.XmlAccessorType;
6import javax.xml.bind.annotation.XmlElement;
7import javax.xml.bind.annotation.XmlSchemaType;
8import javax.xml.bind.annotation.XmlType;
9
10
35@XmlAccessorType(XmlAccessType.FIELD)
36@XmlType(name = "Labels", propOrder = {
37 "templateSet",
38 "labelFormat"
39})
40public 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}