GLS ShipIT  5.2.5
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 java.util.ArrayList;
5 import java.util.List;
6 import javax.xml.bind.annotation.XmlAccessType;
7 import javax.xml.bind.annotation.XmlAccessorType;
8 import javax.xml.bind.annotation.XmlElement;
9 import javax.xml.bind.annotation.XmlRootElement;
10 import javax.xml.bind.annotation.XmlType;
11 
12 
43 @XmlAccessorType(XmlAccessType.FIELD)
44 @XmlType(name = "", propOrder = {
45  "street",
46  "streetNumber",
47  "countryCode",
48  "province",
49  "zipCode",
50  "city",
51  "distance",
52  "maxNumberOfShops",
53  "parcelShopType",
54  "partnerIDs"
55 })
56 @XmlRootElement(name = "ParcelShopSearchLocation")
58 
59  @XmlElement(name = "Street")
60  protected String street;
61  @XmlElement(name = "StreetNumber")
62  protected String streetNumber;
63  @XmlElement(name = "CountryCode", required = true)
64  protected String countryCode;
65  @XmlElement(name = "Province")
66  protected String province;
67  @XmlElement(name = "ZIPCode", required = true)
68  protected String zipCode;
69  @XmlElement(name = "City")
70  protected String city;
71  @XmlElement(name = "Distance")
72  protected String distance;
73  @XmlElement(name = "MaxNumberOfShops")
74  protected String maxNumberOfShops;
75  @XmlElement(name = "ParcelShopType")
76  protected String parcelShopType;
77  @XmlElement(name = "PartnerIDs")
78  protected List<String> partnerIDs;
79 
88  public String getStreet() {
89  return street;
90  }
91 
100  public void setStreet(String value) {
101  this.street = value;
102  }
103 
112  public String getStreetNumber() {
113  return streetNumber;
114  }
115 
124  public void setStreetNumber(String value) {
125  this.streetNumber = value;
126  }
127 
136  public String getCountryCode() {
137  return countryCode;
138  }
139 
148  public void setCountryCode(String value) {
149  this.countryCode = value;
150  }
151 
160  public String getProvince() {
161  return province;
162  }
163 
172  public void setProvince(String value) {
173  this.province = value;
174  }
175 
184  public String getZIPCode() {
185  return zipCode;
186  }
187 
196  public void setZIPCode(String value) {
197  this.zipCode = value;
198  }
199 
208  public String getCity() {
209  return city;
210  }
211 
220  public void setCity(String value) {
221  this.city = value;
222  }
223 
232  public String getDistance() {
233  return distance;
234  }
235 
244  public void setDistance(String value) {
245  this.distance = value;
246  }
247 
256  public String getMaxNumberOfShops() {
257  return maxNumberOfShops;
258  }
259 
268  public void setMaxNumberOfShops(String value) {
269  this.maxNumberOfShops = value;
270  }
271 
280  public String getParcelShopType() {
281  return parcelShopType;
282  }
283 
292  public void setParcelShopType(String value) {
293  this.parcelShopType = value;
294  }
295 
318  public List<String> getPartnerIDs() {
319  if (partnerIDs == null) {
320  partnerIDs = new ArrayList<String>();
321  }
322  return this.partnerIDs;
323  }
324 
325 }