GLS ShipIT
GLS ShipIT - REST services
 All Classes Namespaces Files Functions Variables Enumerator Pages
NDIArea.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 
38 @XmlAccessorType(XmlAccessType.FIELD)
39 @XmlType(name = "NDIArea", propOrder = {
40  "ndi1D",
41  "gbProductIdentifier",
42  "gbPostOffice1D",
43  "chParcelNumber",
44  "chpri1D",
45  "chsi1D"
46 })
47 public class NDIArea {
48 
49  @XmlElement(name = "NDI1D", required = true)
50  protected String ndi1D;
51  @XmlElement(name = "GBProductIdentifier")
52  protected String gbProductIdentifier;
53  @XmlElement(name = "GBPostOffice1D")
54  protected String gbPostOffice1D;
55  @XmlElement(name = "CHParcelNumber")
56  protected String chParcelNumber;
57  @XmlElement(name = "CHPRI1D")
58  protected String chpri1D;
59  @XmlElement(name = "CHSI1D")
60  protected String chsi1D;
61 
70  public String getNDI1D() {
71  return ndi1D;
72  }
73 
82  public void setNDI1D(String value) {
83  this.ndi1D = value;
84  }
85 
94  public String getGBProductIdentifier() {
95  return gbProductIdentifier;
96  }
97 
106  public void setGBProductIdentifier(String value) {
107  this.gbProductIdentifier = value;
108  }
109 
118  public String getGBPostOffice1D() {
119  return gbPostOffice1D;
120  }
121 
130  public void setGBPostOffice1D(String value) {
131  this.gbPostOffice1D = value;
132  }
133 
142  public String getCHParcelNumber() {
143  return chParcelNumber;
144  }
145 
154  public void setCHParcelNumber(String value) {
155  this.chParcelNumber = value;
156  }
157 
166  public String getCHPRI1D() {
167  return chpri1D;
168  }
169 
178  public void setCHPRI1D(String value) {
179  this.chpri1D = value;
180  }
181 
190  public String getCHSI1D() {
191  return chsi1D;
192  }
193 
202  public void setCHSI1D(String value) {
203  this.chsi1D = value;
204  }
205 
206 }