GLS ShipIT  2.8.11
GLS ShipIT - REST services
DefinePrinter.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 = "DefinePrinter", propOrder = {
34  "labelPrinter",
35  "documentPrinter"
36 })
37 public class DefinePrinter {
38 
39  @XmlElement(name = "LabelPrinter", required = true)
40  protected String labelPrinter;
41  @XmlElement(name = "DocumentPrinter")
42  protected String documentPrinter;
43 
52  public String getLabelPrinter() {
53  return labelPrinter;
54  }
55 
64  public void setLabelPrinter(String value) {
65  this.labelPrinter = value;
66  }
67 
76  public String getDocumentPrinter() {
77  return documentPrinter;
78  }
79 
88  public void setDocumentPrinter(String value) {
89  this.documentPrinter = value;
90  }
91 
92 }