GLS ShipIT
GLS ShipIT - REST services
 All Classes Namespaces Files Functions Variables Enumerator Pages
parcelshop/Location.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.XmlType;
8 
9 
32 @XmlAccessorType(XmlAccessType.FIELD)
33 @XmlType(name = "Location", propOrder = {
34  "latitude",
35  "longitude"
36 })
37 public class Location {
38 
39  @XmlElement(name = "Latitude")
40  protected String latitude;
41  @XmlElement(name = "Longitude")
42  protected String longitude;
43 
52  public String getLatitude() {
53  return latitude;
54  }
55 
64  public void setLatitude(String value) {
65  this.latitude = value;
66  }
67 
76  public String getLongitude() {
77  return longitude;
78  }
79 
88  public void setLongitude(String value) {
89  this.longitude = value;
90  }
91 
92 }