GLS ShipIT  2.8.11
GLS ShipIT - REST services
Barcodes.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 
37 @XmlAccessorType(XmlAccessType.FIELD)
38 @XmlType(name = "Barcodes", propOrder = {
39  "primary2D",
40  "secondary2D",
41  "primary1D",
42  "primary1DPrint",
43  "ndi1",
44  "ndi2",
45  "uniShip"
46 })
47 public class Barcodes {
48 
49  @XmlElement(name = "Primary2D")
50  protected String primary2D;
51  @XmlElement(name = "Secondary2D")
52  protected String secondary2D;
53  @XmlElement(name = "Primary1D")
54  protected String primary1D;
55  @XmlElement(name = "Primary1DPrint")
56  protected Boolean primary1DPrint;
57  @XmlElement(name = "NDI1")
58  protected String ndi1;
59  @XmlElement(name = "NDI2")
60  protected String ndi2;
61  @XmlElement(name = "UniShip")
62  protected String uniShip;
63 
72  public String getPrimary2D() {
73  return primary2D;
74  }
75 
84  public void setPrimary2D(String value) {
85  this.primary2D = value;
86  }
87 
96  public String getSecondary2D() {
97  return secondary2D;
98  }
99 
108  public void setSecondary2D(String value) {
109  this.secondary2D = value;
110  }
111 
120  public String getPrimary1D() {
121  return primary1D;
122  }
123 
132  public void setPrimary1D(String value) {
133  this.primary1D = value;
134  }
135 
144  public Boolean isPrimary1DPrint() {
145  return primary1DPrint;
146  }
147 
156  public void setPrimary1DPrint(Boolean value) {
157  this.primary1DPrint = value;
158  }
159 
168  public String getNDI1() {
169  return ndi1;
170  }
171 
180  public void setNDI1(String value) {
181  this.ndi1 = value;
182  }
183 
192  public String getNDI2() {
193  return ndi2;
194  }
195 
204  public void setNDI2(String value) {
205  this.ndi2 = value;
206  }
207 
216  public String getUniShip() {
217  return uniShip;
218  }
219 
228  public void setUniShip(String value) {
229  this.uniShip = value;
230  }
231 
232 }