GLS ShipIT
GLS ShipIT - REST services
 All Classes Namespaces Files Functions Variables Enumerator Pages
GetParcelShopByCountryCodeResponseType.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 = "GetParcelShopByCountryCodeResponseType", propOrder = {
34  "exitCode",
35  "parcelShops"
36 })
38 
39  @XmlElement(name = "ExitCode", required = true)
40  protected GLSExitCode exitCode;
41  @XmlElement(name = "ParcelShops")
42  protected List<GLSParcelShop> parcelShops;
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> getParcelShops() {
91  if (parcelShops == null) {
92  parcelShops = new ArrayList<GLSParcelShop>();
93  }
94  return this.parcelShops;
95  }
96 
97 }