GLS ShipIT 4.0.f2
GLS ShipIT - REST services
Loading...
Searching...
No Matches
GetParcelShopRequestType.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
30@XmlAccessorType(XmlAccessType.FIELD)
31@XmlType(name = "GetParcelShopRequestType", propOrder = {
32 "credentials",
33 "address"
34})
36
37 @XmlElement(name = "Credentials", required = true)
38 protected GLSUserCredentials credentials;
39 @XmlElement(name = "Address", required = true)
40 protected GLSAddress address;
41
50 public GLSUserCredentials getCredentials() {
51 return credentials;
52 }
53
63 this.credentials = value;
64 }
65
75 return address;
76 }
77
86 public void setAddress(GLSAddress value) {
87 this.address = value;
88 }
89
90}