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;
39 @XmlAccessorType(XmlAccessType.FIELD)
40 @XmlType(name =
"", propOrder = {
48 @XmlRootElement(name =
"ParcelShopSearchDistance")
51 @XmlElement(name =
"Latitude", required =
true)
52 protected String latitude;
53 @XmlElement(name = "Longitude", required = true)
54 protected String longitude;
55 @XmlElement(name = "Distance", required = true)
56 protected String distance;
57 @XmlElement(name = "MaxNumberOfShops")
58 protected String maxNumberOfShops;
59 @XmlElement(name = "ParcelShopType")
60 protected String parcelShopType;
61 @XmlElement(name = "PartnerIDs")
62 protected List<String> partnerIDs;
72 public String getLatitude() {
85 this.latitude = value;
109 this.longitude = value;
133 this.distance = value;
145 return maxNumberOfShops;
157 this.maxNumberOfShops = value;
169 return parcelShopType;
181 this.parcelShopType = value;
207 if (partnerIDs == null) {
208 partnerIDs =
new ArrayList<String>();
210 return this.partnerIDs;
List< String > getPartnerIDs()
String getParcelShopType()
void setParcelShopType(String value)
void setLatitude(String value)
void setDistance(String value)
String getMaxNumberOfShops()
void setLongitude(String value)
void setMaxNumberOfShops(String value)