GLS ShipIT 4.0.f2
GLS ShipIT - SOAP services
Loading...
Searching...
No Matches
GetParcelShopByIdRequestType.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 = "GetParcelShopByIdRequestType", propOrder = {
32 "parcelShopId",
33 "credentials"
34})
36
37 @XmlElement(name = "ParcelShopId", required = true)
38 protected String parcelShopId;
39 @XmlElement(name = "Credentials", required = true)
40 protected GLSUserCredentials credentials;
41
50 public String getParcelShopId() {
51 return parcelShopId;
52 }
53
62 public void setParcelShopId(String value) {
63 this.parcelShopId = value;
64 }
65
75 return credentials;
76 }
77
87 this.credentials = value;
88 }
89
90}