GLS ShipIT  3.5.15
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 
39 @XmlAccessorType(XmlAccessType.FIELD)
40 @XmlType(name = "", propOrder = {
41  "street",
42  "streetNumber",
43  "countryCode",
44  "province",
45  "zipCode",
46  "city",
47  "distance",
48  "maxNumberOfShops"
49 })
50 @XmlRootElement(name = "ParcelShopSearchLocation")
52 
53  @XmlElement(name = "Street")
54  protected String street;
55  @XmlElement(name = "StreetNumber")
56  protected String streetNumber;
57  @XmlElement(name = "CountryCode", required = true)
58  protected String countryCode;
59  @XmlElement(name = "Province")
60  protected String province;
61  @XmlElement(name = "ZIPCode", required = true)
62  protected String zipCode;
63  @XmlElement(name = "City")
64  protected String city;
65  @XmlElement(name = "Distance")
66  protected String distance;
67  @XmlElement(name = "MaxNumberOfShops")
68  protected String maxNumberOfShops;
69 
78  public String getStreet() {
79  return street;
80  }
81 
90  public void setStreet(String value) {
91  this.street = value;
92  }
93 
102  public String getStreetNumber() {
103  return streetNumber;
104  }
105 
114  public void setStreetNumber(String value) {
115  this.streetNumber = value;
116  }
117 
126  public String getCountryCode() {
127  return countryCode;
128  }
129 
138  public void setCountryCode(String value) {
139  this.countryCode = value;
140  }
141 
150  public String getProvince() {
151  return province;
152  }
153 
162  public void setProvince(String value) {
163  this.province = value;
164  }
165 
174  public String getZIPCode() {
175  return zipCode;
176  }
177 
186  public void setZIPCode(String value) {
187  this.zipCode = value;
188  }
189 
198  public String getCity() {
199  return city;
200  }
201 
210  public void setCity(String value) {
211  this.city = value;
212  }
213 
222  public String getDistance() {
223  return distance;
224  }
225 
234  public void setDistance(String value) {
235  this.distance = value;
236  }
237 
246  public String getMaxNumberOfShops() {
247  return maxNumberOfShops;
248  }
249 
258  public void setMaxNumberOfShops(String value) {
259  this.maxNumberOfShops = value;
260  }
261 
262 }