GLS ShipIT  5.2.5
GLS ShipIT - SOAP services
glsgroup/fpcs/datatypes/soap/v1/shipmentprocessing/PrintingOptions.java
Go to the documentation of this file.
1 
2 package eu.glsgroup.fpcs.datatypes.soap.v1.shipmentprocessing;
3 
4 import java.util.ArrayList;
5 import java.util.List;
6 import javax.xml.bind.annotation.XmlAccessType;
7 import javax.xml.bind.annotation.XmlAccessorType;
8 import javax.xml.bind.annotation.XmlElement;
9 import javax.xml.bind.annotation.XmlType;
10 
11 
37 @XmlAccessorType(XmlAccessType.FIELD)
38 @XmlType(name = "PrintingOptions", propOrder = {
39  "returnLabels",
40  "useDefault",
41  "definePrinter"
42 })
43 public class PrintingOptions {
44 
45  @XmlElement(name = "ReturnLabels")
46  protected List<ReturnLabels> returnLabels;
47  @XmlElement(name = "UseDefault")
48  protected String useDefault;
49  @XmlElement(name = "DefinePrinter")
50  protected DefinePrinter definePrinter;
51 
74  public List<ReturnLabels> getReturnLabels() {
75  if (returnLabels == null) {
76  returnLabels = new ArrayList<ReturnLabels>();
77  }
78  return this.returnLabels;
79  }
80 
89  public String getUseDefault() {
90  return useDefault;
91  }
92 
101  public void setUseDefault(String value) {
102  this.useDefault = value;
103  }
104 
114  return definePrinter;
115  }
116 
125  public void setDefinePrinter(DefinePrinter value) {
126  this.definePrinter = value;
127  }
128 
129 }