GLS ShipIT  4.0.f3
GLS ShipIT - REST services
ParcelShopSearchLocation.java
Go to the documentation of this file.
1 
2 package eu.glsgroup.fpcs.datatypes.soap.v1.parcelshop;
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.XmlRootElement;
8 import javax.xml.bind.annotation.XmlType;
9 
10 
40 @XmlAccessorType(XmlAccessType.FIELD)
41 @XmlType(name = "", propOrder = {
42  "street",
43  "streetNumber",
44  "countryCode",
45  "province",
46  "zipCode",
47  "city",
48  "distance",
49  "maxNumberOfShops",
50  "parcelShopType"
51 })
52 @XmlRootElement(name = "ParcelShopSearchLocation")
54 
55  @XmlElement(name = "Street")
56  protected String street;
57  @XmlElement(name = "StreetNumber")
58  protected String streetNumber;
59  @XmlElement(name = "CountryCode", required = true)
60  protected String countryCode;
61  @XmlElement(name = "Province")
62  protected String province;
63  @XmlElement(name = "ZIPCode", required = true)
64  protected String zipCode;
65  @XmlElement(name = "City")
66  protected String city;
67  @XmlElement(name = "Distance")
68  protected String distance;
69  @XmlElement(name = "MaxNumberOfShops")
70  protected String maxNumberOfShops;
71  @XmlElement(name = "ParcelShopType")
72  protected String parcelShopType;
73 
82  public String getStreet() {
83  return street;
84  }
85 
94  public void setStreet(String value) {
95  this.street = value;
96  }
97 
106  public String getStreetNumber() {
107  return streetNumber;
108  }
109 
118  public void setStreetNumber(String value) {
119  this.streetNumber = value;
120  }
121 
130  public String getCountryCode() {
131  return countryCode;
132  }
133 
142  public void setCountryCode(String value) {
143  this.countryCode = value;
144  }
145 
154  public String getProvince() {
155  return province;
156  }
157 
166  public void setProvince(String value) {
167  this.province = value;
168  }
169 
178  public String getZIPCode() {
179  return zipCode;
180  }
181 
190  public void setZIPCode(String value) {
191  this.zipCode = value;
192  }
193 
202  public String getCity() {
203  return city;
204  }
205 
214  public void setCity(String value) {
215  this.city = value;
216  }
217 
226  public String getDistance() {
227  return distance;
228  }
229 
238  public void setDistance(String value) {
239  this.distance = value;
240  }
241 
250  public String getMaxNumberOfShops() {
251  return maxNumberOfShops;
252  }
253 
262  public void setMaxNumberOfShops(String value) {
263  this.maxNumberOfShops = value;
264  }
265 
274  public String getParcelShopType() {
275  return parcelShopType;
276  }
277 
286  public void setParcelShopType(String value) {
287  this.parcelShopType = value;
288  }
289 
290 }