GLS ShipIT
GLS ShipIT - REST services
 All Classes Namespaces Files Functions Variables Enumerator Pages
SearchResults.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 
9 
30 @XmlAccessorType(XmlAccessType.FIELD)
31 @XmlType(name = "SearchResults", propOrder = {
32  "parcelshop",
33  "airLineDistance"
34 })
35 public 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 }