GLS ShipIT  2.8.11
GLS ShipIT - REST services
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 
28 @XmlAccessorType(XmlAccessType.FIELD)
29 @XmlType(name = "GetParcelShopByIdResponseType", propOrder = {
30  "exitCode",
31  "parcelShop"
32 })
34 
35  @XmlElement(name = "ExitCode", required = true)
36  protected GLSExitCode exitCode;
37  @XmlElement(name = "ParcelShop")
38  protected GLSParcelShop parcelShop;
39 
48  public GLSExitCode getExitCode() {
49  return exitCode;
50  }
51 
60  public void setExitCode(GLSExitCode value) {
61  this.exitCode = value;
62  }
63 
73  return parcelShop;
74  }
75 
84  public void setParcelShop(GLSParcelShop value) {
85  this.parcelShop = value;
86  }
87 
88 }