GLS ShipIT
GLS ShipIT - REST services
 All Classes Namespaces Files Functions Variables Enumerator Pages
GetParcelShopByCountryCodeRequestType.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 
30 @XmlAccessorType(XmlAccessType.FIELD)
31 @XmlType(name = "GetParcelShopByCountryCodeRequestType", propOrder = {
32  "credentials",
33  "countryCode"
34 })
36 
37  @XmlElement(name = "Credentials", required = true)
38  protected GLSUserCredentials credentials;
39  @XmlElement(name = "CountryCode", required = true)
40  protected String countryCode;
41 
50  public GLSUserCredentials getCredentials() {
51  return credentials;
52  }
53 
62  public void setCredentials(GLSUserCredentials value) {
63  this.credentials = value;
64  }
65 
74  public String getCountryCode() {
75  return countryCode;
76  }
77 
86  public void setCountryCode(String value) {
87  this.countryCode = value;
88  }
89 
90 }