GLS ShipIT
GLS ShipIT - REST services
 All Classes Namespaces Files Functions Variables Enumerator Pages
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 
34 @XmlAccessorType(XmlAccessType.FIELD)
35 @XmlType(name = "", propOrder = {
36  "latitude",
37  "longitude",
38  "distance"
39 })
40 @XmlRootElement(name = "ParcelShopSearchDistance")
42 
43  @XmlElement(name = "Latitude", required = true)
44  protected String latitude;
45  @XmlElement(name = "Longitude", required = true)
46  protected String longitude;
47  @XmlElement(name = "Distance", required = true)
48  protected String distance;
49 
58  public String getLatitude() {
59  return latitude;
60  }
61 
70  public void setLatitude(String value) {
71  this.latitude = value;
72  }
73 
82  public String getLongitude() {
83  return longitude;
84  }
85 
94  public void setLongitude(String value) {
95  this.longitude = value;
96  }
97 
106  public String getDistance() {
107  return distance;
108  }
109 
118  public void setDistance(String value) {
119  this.distance = value;
120  }
121 
122 }