GLS ShipIT  5.0.11
GLS ShipIT - REST services
glsgroup/fpcs/datatypes/soap/v1/shipmentprocessing/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 
40 @XmlAccessorType(XmlAccessType.FIELD)
41 @XmlType(name = "NDIArea", propOrder = {
42  "ndi1D",
43  "gbProductIdentifier",
44  "gbPostOffice1D",
45  "chParcelNumber",
46  "chpri1D",
47  "chsi1D",
48  "route",
49  "routeStation"
50 })
51 public class NDIArea {
52 
53  @XmlElement(name = "NDI1D", required = true)
54  protected String ndi1D;
55  @XmlElement(name = "GBProductIdentifier")
56  protected String gbProductIdentifier;
57  @XmlElement(name = "GBPostOffice1D")
58  protected String gbPostOffice1D;
59  @XmlElement(name = "CHParcelNumber")
60  protected String chParcelNumber;
61  @XmlElement(name = "CHPRI1D")
62  protected String chpri1D;
63  @XmlElement(name = "CHSI1D")
64  protected String chsi1D;
65  @XmlElement(name = "Route")
66  protected String route;
67  @XmlElement(name = "RouteStation")
68  protected String routeStation;
69 
78  public String getNDI1D() {
79  return ndi1D;
80  }
81 
90  public void setNDI1D(String value) {
91  this.ndi1D = value;
92  }
93 
102  public String getGBProductIdentifier() {
103  return gbProductIdentifier;
104  }
105 
114  public void setGBProductIdentifier(String value) {
115  this.gbProductIdentifier = value;
116  }
117 
126  public String getGBPostOffice1D() {
127  return gbPostOffice1D;
128  }
129 
138  public void setGBPostOffice1D(String value) {
139  this.gbPostOffice1D = value;
140  }
141 
150  public String getCHParcelNumber() {
151  return chParcelNumber;
152  }
153 
162  public void setCHParcelNumber(String value) {
163  this.chParcelNumber = value;
164  }
165 
174  public String getCHPRI1D() {
175  return chpri1D;
176  }
177 
186  public void setCHPRI1D(String value) {
187  this.chpri1D = value;
188  }
189 
198  public String getCHSI1D() {
199  return chsi1D;
200  }
201 
210  public void setCHSI1D(String value) {
211  this.chsi1D = value;
212  }
213 
222  public String getRoute() {
223  return route;
224  }
225 
234  public void setRoute(String value) {
235  this.route = value;
236  }
237 
246  public String getRouteStation() {
247  return routeStation;
248  }
249 
258  public void setRouteStation(String value) {
259  this.routeStation = value;
260  }
261 
262 }