GLS ShipIT
GLS ShipIT - REST services
 All Classes Namespaces Files Functions Variables Enumerator Pages
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 
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 
66  public void setCredentials(GLSUserCredentials value) {
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 }