2 package eu.glsgroup.fpcs.datatypes.soap.v1.parcelshop;
4 import java.util.ArrayList;
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;
43 @XmlAccessorType(XmlAccessType.FIELD)
44 @XmlType(name =
"", propOrder = {
56 @XmlRootElement(name =
"ParcelShopSearchLocation")
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;
88 public String getStreet() {
125 this.streetNumber = value;
149 this.countryCode = value;
173 this.province = value;
197 this.zipCode = value;
245 this.distance = value;
257 return maxNumberOfShops;
269 this.maxNumberOfShops = value;
281 return parcelShopType;
293 this.parcelShopType = value;
319 if (partnerIDs == null) {
320 partnerIDs =
new ArrayList<String>();
322 return this.partnerIDs;
void setZIPCode(String value)
void setCity(String value)
void setMaxNumberOfShops(String value)
String getParcelShopType()
void setCountryCode(String value)
void setParcelShopType(String value)
void setStreetNumber(String value)
void setProvince(String value)
void setDistance(String value)
void setStreet(String value)
String getMaxNumberOfShops()
List< String > getPartnerIDs()