GLS ShipIT 4.0.f2
GLS ShipIT - SOAP services
Loading...
Searching...
No Matches
GLSCoordinates.java
Go to the documentation of this file.
1
2package eu.glsgroup.ws.parcelshopsearch;
3
4import javax.xml.bind.annotation.XmlAccessType;
5import javax.xml.bind.annotation.XmlAccessorType;
6import javax.xml.bind.annotation.XmlElement;
7import javax.xml.bind.annotation.XmlType;
8
9
30@XmlAccessorType(XmlAccessType.FIELD)
31@XmlType(name = "GLSCoordinates", propOrder = {
32 "latitude",
33 "longitude"
34})
35public class GLSCoordinates {
36
37 @XmlElement(name = "Latitude")
38 protected double latitude;
39 @XmlElement(name = "Longitude")
40 protected double longitude;
41
46 public double getLatitude() {
47 return latitude;
48 }
49
54 public void setLatitude(double value) {
55 this.latitude = value;
56 }
57
62 public double getLongitude() {
63 return longitude;
64 }
65
70 public void setLongitude(double value) {
71 this.longitude = value;
72 }
73
74}