GLS ShipIT 4.0.f2
GLS ShipIT - SOAP services
Loading...
Searching...
No Matches
glsgroup/fpcs/datatypes/soap/v1/parcelshop/Location.java
Go to the documentation of this file.
1
2package eu.glsgroup.fpcs.datatypes.soap.v1.parcelshop;
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
32@XmlAccessorType(XmlAccessType.FIELD)
33@XmlType(name = "Location", propOrder = {
34 "latitude",
35 "longitude"
36})
37public 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}