GLS ShipIT
GLS ShipIT - REST services
 All Classes Namespaces Files Functions Variables Enumerator Pages
GetParcelShopByIdResponseType.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 = "GetParcelShopByIdResponseType", propOrder = {
32  "exitCode",
33  "parcelShop"
34 })
36 
37  @XmlElement(name = "ExitCode", required = true)
38  protected GLSExitCode exitCode;
39  @XmlElement(name = "ParcelShop")
40  protected GLSParcelShop parcelShop;
41 
50  public GLSExitCode getExitCode() {
51  return exitCode;
52  }
53 
62  public void setExitCode(GLSExitCode value) {
63  this.exitCode = value;
64  }
65 
75  return parcelShop;
76  }
77 
86  public void setParcelShop(GLSParcelShop value) {
87  this.parcelShop = value;
88  }
89 
90 }