GLS ShipIT 4.0.f2
GLS ShipIT - SOAP services
Loading...
Searching...
No Matches
GetParcelShopInAreaRequestType.java
Go to the documentation of this file.
1
2package eu.glsgroup.ws.parcelshopsearch;
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
31@XmlAccessorType(XmlAccessType.FIELD)
32@XmlType(name = "GetParcelShopInAreaRequestType", propOrder = {
33 "credentials",
34 "from",
35 "to"
36})
38
39 @XmlElement(name = "Credentials", required = true)
40 protected GLSUserCredentials credentials;
41 @XmlElement(name = "From", required = true)
42 protected GLSCoordinates from;
43 @XmlElement(name = "To", required = true)
44 protected GLSCoordinates to;
45
54 public GLSUserCredentials getCredentials() {
55 return credentials;
56 }
57
67 this.credentials = value;
68 }
69
79 return from;
80 }
81
90 public void setFrom(GLSCoordinates value) {
91 this.from = value;
92 }
93
103 return to;
104 }
105
114 public void setTo(GLSCoordinates value) {
115 this.to = value;
116 }
117
118}