GLS ShipIT  2.8.11
GLS ShipIT - REST services
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 
30 @XmlAccessorType(XmlAccessType.FIELD)
31 @XmlType(name = "Location", propOrder = {
32  "latitude",
33  "longitude"
34 })
35 public class Location {
36 
37  @XmlElement(name = "Latitude", required = true)
38  protected String latitude;
39  @XmlElement(name = "Longitude", required = true)
40  protected String longitude;
41 
50  public String getLatitude() {
51  return latitude;
52  }
53 
62  public void setLatitude(String value) {
63  this.latitude = value;
64  }
65 
74  public String getLongitude() {
75  return longitude;
76  }
77 
86  public void setLongitude(String value) {
87  this.longitude = value;
88  }
89 
90 }