GLS ShipIT  3.5.15
GLS ShipIT - SOAP services
ParcelShopSearchDistance.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  "latitude",
38  "longitude",
39  "distance",
40  "maxNumberOfShops"
41 })
42 @XmlRootElement(name = "ParcelShopSearchDistance")
44 
45  @XmlElement(name = "Latitude", required = true)
46  protected String latitude;
47  @XmlElement(name = "Longitude", required = true)
48  protected String longitude;
49  @XmlElement(name = "Distance", required = true)
50  protected String distance;
51  @XmlElement(name = "MaxNumberOfShops")
52  protected String maxNumberOfShops;
53 
62  public String getLatitude() {
63  return latitude;
64  }
65 
74  public void setLatitude(String value) {
75  this.latitude = value;
76  }
77 
86  public String getLongitude() {
87  return longitude;
88  }
89 
98  public void setLongitude(String value) {
99  this.longitude = value;
100  }
101 
110  public String getDistance() {
111  return distance;
112  }
113 
122  public void setDistance(String value) {
123  this.distance = value;
124  }
125 
134  public String getMaxNumberOfShops() {
135  return maxNumberOfShops;
136  }
137 
146  public void setMaxNumberOfShops(String value) {
147  this.maxNumberOfShops = value;
148  }
149 
150 }