GLS ShipIT  2.8.11
GLS ShipIT - REST services
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 
36 @XmlAccessorType(XmlAccessType.FIELD)
37 @XmlType(name = "NDIArea", propOrder = {
38  "ndi1D",
39  "gbProductIdentifier",
40  "gbPostOffice1D",
41  "chParcelNumber",
42  "chpri1D",
43  "chsi1D"
44 })
45 public class NDIArea {
46 
47  @XmlElement(name = "NDI1D", required = true)
48  protected String ndi1D;
49  @XmlElement(name = "GBProductIdentifier")
50  protected String gbProductIdentifier;
51  @XmlElement(name = "GBPostOffice1D")
52  protected String gbPostOffice1D;
53  @XmlElement(name = "CHParcelNumber")
54  protected String chParcelNumber;
55  @XmlElement(name = "CHPRI1D")
56  protected String chpri1D;
57  @XmlElement(name = "CHSI1D")
58  protected String chsi1D;
59 
68  public String getNDI1D() {
69  return ndi1D;
70  }
71 
80  public void setNDI1D(String value) {
81  this.ndi1D = value;
82  }
83 
92  public String getGBProductIdentifier() {
93  return gbProductIdentifier;
94  }
95 
104  public void setGBProductIdentifier(String value) {
105  this.gbProductIdentifier = value;
106  }
107 
116  public String getGBPostOffice1D() {
117  return gbPostOffice1D;
118  }
119 
128  public void setGBPostOffice1D(String value) {
129  this.gbPostOffice1D = value;
130  }
131 
140  public String getCHParcelNumber() {
141  return chParcelNumber;
142  }
143 
152  public void setCHParcelNumber(String value) {
153  this.chParcelNumber = value;
154  }
155 
164  public String getCHPRI1D() {
165  return chpri1D;
166  }
167 
176  public void setCHPRI1D(String value) {
177  this.chpri1D = value;
178  }
179 
188  public String getCHSI1D() {
189  return chsi1D;
190  }
191 
200  public void setCHSI1D(String value) {
201  this.chsi1D = value;
202  }
203 
204 }