GLS ShipIT 4.0.f2
GLS ShipIT - REST services
Loading...
Searching...
No Matches
GetParcelShopReponseType.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 = "GetParcelShopReponseType", propOrder = {
34 "exitCode",
35 "searchResults"
36})
38
39 @XmlElement(required = true)
40 protected GLSExitCode exitCode;
41 @XmlElement(name = "SearchResults")
42 protected List<SearchResults> searchResults;
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<SearchResults> getSearchResults() {
91 if (searchResults == null) {
92 searchResults = new ArrayList<SearchResults>();
93 }
94 return this.searchResults;
95 }
96
97}