GLS ShipIT  2.8.11
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 
35 @XmlAccessorType(XmlAccessType.FIELD)
36 @XmlType(name = "", propOrder = {
37  "street",
38  "streetNumber",
39  "countryCode",
40  "province",
41  "zipCode",
42  "city"
43 })
44 @XmlRootElement(name = "ParcelShopSearchLocation")
46 
47  @XmlElement(name = "Street")
48  protected String street;
49  @XmlElement(name = "StreetNumber")
50  protected String streetNumber;
51  @XmlElement(name = "CountryCode", required = true)
52  protected String countryCode;
53  @XmlElement(name = "Province")
54  protected String province;
55  @XmlElement(name = "ZIPCode", required = true)
56  protected String zipCode;
57  @XmlElement(name = "City")
58  protected String city;
59 
68  public String getStreet() {
69  return street;
70  }
71 
80  public void setStreet(String value) {
81  this.street = value;
82  }
83 
92  public String getStreetNumber() {
93  return streetNumber;
94  }
95 
104  public void setStreetNumber(String value) {
105  this.streetNumber = value;
106  }
107 
116  public String getCountryCode() {
117  return countryCode;
118  }
119 
128  public void setCountryCode(String value) {
129  this.countryCode = value;
130  }
131 
140  public String getProvince() {
141  return province;
142  }
143 
152  public void setProvince(String value) {
153  this.province = value;
154  }
155 
164  public String getZIPCode() {
165  return zipCode;
166  }
167 
176  public void setZIPCode(String value) {
177  this.zipCode = value;
178  }
179 
188  public String getCity() {
189  return city;
190  }
191 
200  public void setCity(String value) {
201  this.city = value;
202  }
203 
204 }