GLS ShipIT  2.8.11
GLS ShipIT - SOAP services
GetParcelShopInAreaRequestType.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 
29 @XmlAccessorType(XmlAccessType.FIELD)
30 @XmlType(name = "GetParcelShopInAreaRequestType", propOrder = {
31  "credentials",
32  "from",
33  "to"
34 })
36 
37  @XmlElement(name = "Credentials", required = true)
38  protected GLSUserCredentials credentials;
39  @XmlElement(name = "From", required = true)
40  protected GLSCoordinates from;
41  @XmlElement(name = "To", required = true)
42  protected GLSCoordinates to;
43 
52  public GLSUserCredentials getCredentials() {
53  return credentials;
54  }
55 
64  public void setCredentials(GLSUserCredentials value) {
65  this.credentials = value;
66  }
67 
77  return from;
78  }
79 
88  public void setFrom(GLSCoordinates value) {
89  this.from = value;
90  }
91 
101  return to;
102  }
103 
112  public void setTo(GLSCoordinates value) {
113  this.to = value;
114  }
115 
116 }