GLS ShipIT
GLS ShipIT - REST services
 All Classes Namespaces Files Functions Variables Enumerator Pages
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 
39 @XmlAccessorType(XmlAccessType.FIELD)
40 @XmlType(name = "Barcodes", propOrder = {
41  "primary2D",
42  "secondary2D",
43  "primary1D",
44  "primary1DPrint",
45  "ndi1",
46  "ndi2",
47  "uniShip"
48 })
49 public class Barcodes {
50 
51  @XmlElement(name = "Primary2D")
52  protected String primary2D;
53  @XmlElement(name = "Secondary2D")
54  protected String secondary2D;
55  @XmlElement(name = "Primary1D")
56  protected String primary1D;
57  @XmlElement(name = "Primary1DPrint")
58  protected Boolean primary1DPrint;
59  @XmlElement(name = "NDI1")
60  protected String ndi1;
61  @XmlElement(name = "NDI2")
62  protected String ndi2;
63  @XmlElement(name = "UniShip")
64  protected String uniShip;
65 
74  public String getPrimary2D() {
75  return primary2D;
76  }
77 
86  public void setPrimary2D(String value) {
87  this.primary2D = value;
88  }
89 
98  public String getSecondary2D() {
99  return secondary2D;
100  }
101 
110  public void setSecondary2D(String value) {
111  this.secondary2D = value;
112  }
113 
122  public String getPrimary1D() {
123  return primary1D;
124  }
125 
134  public void setPrimary1D(String value) {
135  this.primary1D = value;
136  }
137 
146  public Boolean isPrimary1DPrint() {
147  return primary1DPrint;
148  }
149 
158  public void setPrimary1DPrint(Boolean value) {
159  this.primary1DPrint = value;
160  }
161 
170  public String getNDI1() {
171  return ndi1;
172  }
173 
182  public void setNDI1(String value) {
183  this.ndi1 = value;
184  }
185 
194  public String getNDI2() {
195  return ndi2;
196  }
197 
206  public void setNDI2(String value) {
207  this.ndi2 = value;
208  }
209 
218  public String getUniShip() {
219  return uniShip;
220  }
221 
230  public void setUniShip(String value) {
231  this.uniShip = value;
232  }
233 
234 }