GLS ShipIT  2.8.11
GLS ShipIT - REST services
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 
28 @XmlAccessorType(XmlAccessType.FIELD)
29 @XmlType(name = "GLSCoordinates", propOrder = {
30  "latitude",
31  "longitude"
32 })
33 public class GLSCoordinates {
34 
35  @XmlElement(name = "Latitude")
36  protected double latitude;
37  @XmlElement(name = "Longitude")
38  protected double longitude;
39 
44  public double getLatitude() {
45  return latitude;
46  }
47 
52  public void setLatitude(double value) {
53  this.latitude = value;
54  }
55 
60  public double getLongitude() {
61  return longitude;
62  }
63 
68  public void setLongitude(double value) {
69  this.longitude = value;
70  }
71 
72 }