GLS ShipIT 4.0.f2
GLS ShipIT - SOAP services
Loading...
Searching...
No Matches
SearchResults.java
Go to the documentation of this file.
1
2package eu.glsgroup.ws.parcelshopsearch;
3
4import javax.xml.bind.annotation.XmlAccessType;
5import javax.xml.bind.annotation.XmlAccessorType;
6import javax.xml.bind.annotation.XmlElement;
7import javax.xml.bind.annotation.XmlType;
8
9
30@XmlAccessorType(XmlAccessType.FIELD)
31@XmlType(name = "SearchResults", propOrder = {
32 "parcelshop",
33 "airLineDistance"
34})
35public class SearchResults {
36
37 @XmlElement(name = "Parcelshop")
38 protected GLSParcelShop parcelshop;
39 @XmlElement(name = "AirLineDistance", required = true)
40 protected String airLineDistance;
41
50 public GLSParcelShop getParcelshop() {
51 return parcelshop;
52 }
53
62 public void setParcelshop(GLSParcelShop value) {
63 this.parcelshop = value;
64 }
65
74 public String getAirLineDistance() {
75 return airLineDistance;
76 }
77
86 public void setAirLineDistance(String value) {
87 this.airLineDistance = value;
88 }
89
90}