GLS ShipIT  2.8.11
GLS ShipIT - SOAP services
GetParcelShopInAreaResponse.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 import java.util.ArrayList;
9 import java.util.List;
10 
11 
30 @XmlAccessorType(XmlAccessType.FIELD)
31 @XmlType(name = "GetParcelShopInAreaResponse", propOrder = {
32  "exitCode",
33  "parcelShop"
34 })
36 
37  @XmlElement(name = "ExitCode", required = true)
38  protected GLSExitCode exitCode;
39  @XmlElement(name = "ParcelShop")
40  protected List<GLSParcelShop> parcelShop;
41 
50  public GLSExitCode getExitCode() {
51  return exitCode;
52  }
53 
62  public void setExitCode(GLSExitCode value) {
63  this.exitCode = value;
64  }
65 
88  public List<GLSParcelShop> getParcelShop() {
89  if (parcelShop == null) {
90  parcelShop = new ArrayList<GLSParcelShop>();
91  }
92  return this.parcelShop;
93  }
94 
95 }