GLS ShipIT
GLS ShipIT - REST services
 All Classes Namespaces Files Functions Variables Enumerator Pages
GLSCoordinates.java
Go to the documentation of this file.
1 
2 package eu.glsgroup.ws.parcelshopsearch;
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.XmlType;
8 
9 
30 @XmlAccessorType(XmlAccessType.FIELD)
31 @XmlType(name = "GLSCoordinates", propOrder = {
32  "latitude",
33  "longitude"
34 })
35 public 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 }