GLS ShipIT  5.2.5
GLS ShipIT - REST services
ParcelShopSearchDistance.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 
39 @XmlAccessorType(XmlAccessType.FIELD)
40 @XmlType(name = "", propOrder = {
41  "latitude",
42  "longitude",
43  "distance",
44  "maxNumberOfShops",
45  "parcelShopType",
46  "partnerIDs"
47 })
48 @XmlRootElement(name = "ParcelShopSearchDistance")
50 
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;
63 
72  public String getLatitude() {
73  return latitude;
74  }
75 
84  public void setLatitude(String value) {
85  this.latitude = value;
86  }
87 
96  public String getLongitude() {
97  return longitude;
98  }
99 
108  public void setLongitude(String value) {
109  this.longitude = value;
110  }
111 
120  public String getDistance() {
121  return distance;
122  }
123 
132  public void setDistance(String value) {
133  this.distance = value;
134  }
135 
144  public String getMaxNumberOfShops() {
145  return maxNumberOfShops;
146  }
147 
156  public void setMaxNumberOfShops(String value) {
157  this.maxNumberOfShops = value;
158  }
159 
168  public String getParcelShopType() {
169  return parcelShopType;
170  }
171 
180  public void setParcelShopType(String value) {
181  this.parcelShopType = value;
182  }
183 
206  public List<String> getPartnerIDs() {
207  if (partnerIDs == null) {
208  partnerIDs = new ArrayList<String>();
209  }
210  return this.partnerIDs;
211  }
212 
213 }