GLS ShipIT 4.0.f2
GLS ShipIT - REST services
Loading...
Searching...
No Matches
GetParcelShopByCountryCodeResponseType.java
Go to the documentation of this file.
1
2package eu.glsgroup.ws.parcelshopsearch;
3
4import java.util.ArrayList;
5import java.util.List;
6import javax.xml.bind.annotation.XmlAccessType;
7import javax.xml.bind.annotation.XmlAccessorType;
8import javax.xml.bind.annotation.XmlElement;
9import 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}