GLS ShipIT
GLS ShipIT - REST services
 All Classes Namespaces Files Functions Variables Enumerator Pages
PrintingOptions.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 
35 @XmlAccessorType(XmlAccessType.FIELD)
36 @XmlType(name = "PrintingOptions", propOrder = {
37  "returnLabels",
38  "useDefault",
39  "definePrinter"
40 })
41 public class PrintingOptions {
42 
43  @XmlElement(name = "ReturnLabels")
44  protected ReturnLabels returnLabels;
45  @XmlElement(name = "UseDefault")
46  protected String useDefault;
47  @XmlElement(name = "DefinePrinter")
48  protected DefinePrinter definePrinter;
49 
58  public ReturnLabels getReturnLabels() {
59  return returnLabels;
60  }
61 
70  public void setReturnLabels(ReturnLabels value) {
71  this.returnLabels = value;
72  }
73 
82  public String getUseDefault() {
83  return useDefault;
84  }
85 
94  public void setUseDefault(String value) {
95  this.useDefault = value;
96  }
97 
107  return definePrinter;
108  }
109 
118  public void setDefinePrinter(DefinePrinter value) {
119  this.definePrinter = value;
120  }
121 
122 }