GLS ShipIT  2.8.11
GLS ShipIT - REST services
GetParcelShopRequestType.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 
28 @XmlAccessorType(XmlAccessType.FIELD)
29 @XmlType(name = "GetParcelShopRequestType", propOrder = {
30  "credentials",
31  "address"
32 })
34 
35  @XmlElement(name = "Credentials", required = true)
36  protected GLSUserCredentials credentials;
37  @XmlElement(name = "Address", required = true)
38  protected GLSAddress address;
39 
48  public GLSUserCredentials getCredentials() {
49  return credentials;
50  }
51 
60  public void setCredentials(GLSUserCredentials value) {
61  this.credentials = value;
62  }
63 
73  return address;
74  }
75 
84  public void setAddress(GLSAddress value) {
85  this.address = value;
86  }
87 
88 }