GLS ShipIT
GLS ShipIT - REST services
 All Classes Namespaces Files Functions Variables Enumerator Pages
GetParcelShopInAreaResponse.java
Go to the documentation of this file.
1 
2 package eu.glsgroup.ws.parcelshopsearch;
3 
4 import java.util.ArrayList;
5 import java.util.List;
6 import javax.xml.bind.annotation.XmlAccessType;
7 import javax.xml.bind.annotation.XmlAccessorType;
8 import javax.xml.bind.annotation.XmlElement;
9 import javax.xml.bind.annotation.XmlType;
10 
11 
32 @XmlAccessorType(XmlAccessType.FIELD)
33 @XmlType(name = "GetParcelShopInAreaResponse", propOrder = {
34  "exitCode",
35  "parcelShop"
36 })
38 
39  @XmlElement(name = "ExitCode", required = true)
40  protected GLSExitCode exitCode;
41  @XmlElement(name = "ParcelShop")
42  protected List<GLSParcelShop> parcelShop;
43 
52  public GLSExitCode getExitCode() {
53  return exitCode;
54  }
55 
64  public void setExitCode(GLSExitCode value) {
65  this.exitCode = value;
66  }
67 
90  public List<GLSParcelShop> getParcelShop() {
91  if (parcelShop == null) {
92  parcelShop = new ArrayList<GLSParcelShop>();
93  }
94  return this.parcelShop;
95  }
96 
97 }