GLS ShipIT  3.3.20
GLS ShipIT - SOAP 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 
38 @XmlAccessorType(XmlAccessType.FIELD)
39 @XmlType(name = "", propOrder = {
40  "street",
41  "streetNumber",
42  "countryCode",
43  "province",
44  "zipCode",
45  "city",
46  "distance"
47 })
48 @XmlRootElement(name = "ParcelShopSearchLocation")
50 
51  @XmlElement(name = "Street")
52  protected String street;
53  @XmlElement(name = "StreetNumber")
54  protected String streetNumber;
55  @XmlElement(name = "CountryCode", required = true)
56  protected String countryCode;
57  @XmlElement(name = "Province")
58  protected String province;
59  @XmlElement(name = "ZIPCode", required = true)
60  protected String zipCode;
61  @XmlElement(name = "City")
62  protected String city;
63  @XmlElement(name = "Distance")
64  protected String distance;
65 
74  public String getStreet() {
75  return street;
76  }
77 
86  public void setStreet(String value) {
87  this.street = value;
88  }
89 
98  public String getStreetNumber() {
99  return streetNumber;
100  }
101 
110  public void setStreetNumber(String value) {
111  this.streetNumber = value;
112  }
113 
122  public String getCountryCode() {
123  return countryCode;
124  }
125 
134  public void setCountryCode(String value) {
135  this.countryCode = value;
136  }
137 
146  public String getProvince() {
147  return province;
148  }
149 
158  public void setProvince(String value) {
159  this.province = value;
160  }
161 
170  public String getZIPCode() {
171  return zipCode;
172  }
173 
182  public void setZIPCode(String value) {
183  this.zipCode = value;
184  }
185 
194  public String getCity() {
195  return city;
196  }
197 
206  public void setCity(String value) {
207  this.city = value;
208  }
209 
218  public String getDistance() {
219  return distance;
220  }
221 
230  public void setDistance(String value) {
231  this.distance = value;
232  }
233 
234 }