GLS ShipIT
GLS ShipIT - REST services
 All Classes Namespaces Files Functions Variables Enumerator Pages
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 
37 @XmlAccessorType(XmlAccessType.FIELD)
38 @XmlType(name = "", propOrder = {
39  "street",
40  "streetNumber",
41  "countryCode",
42  "province",
43  "zipCode",
44  "city"
45 })
46 @XmlRootElement(name = "ParcelShopSearchLocation")
48 
49  @XmlElement(name = "Street")
50  protected String street;
51  @XmlElement(name = "StreetNumber")
52  protected String streetNumber;
53  @XmlElement(name = "CountryCode", required = true)
54  protected String countryCode;
55  @XmlElement(name = "Province")
56  protected String province;
57  @XmlElement(name = "ZIPCode", required = true)
58  protected String zipCode;
59  @XmlElement(name = "City")
60  protected String city;
61 
70  public String getStreet() {
71  return street;
72  }
73 
82  public void setStreet(String value) {
83  this.street = value;
84  }
85 
94  public String getStreetNumber() {
95  return streetNumber;
96  }
97 
106  public void setStreetNumber(String value) {
107  this.streetNumber = value;
108  }
109 
118  public String getCountryCode() {
119  return countryCode;
120  }
121 
130  public void setCountryCode(String value) {
131  this.countryCode = value;
132  }
133 
142  public String getProvince() {
143  return province;
144  }
145 
154  public void setProvince(String value) {
155  this.province = value;
156  }
157 
166  public String getZIPCode() {
167  return zipCode;
168  }
169 
178  public void setZIPCode(String value) {
179  this.zipCode = value;
180  }
181 
190  public String getCity() {
191  return city;
192  }
193 
202  public void setCity(String value) {
203  this.city = value;
204  }
205 
206 }