GLS ShipIT  2.8.11
GLS ShipIT - REST services
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 
28 @XmlAccessorType(XmlAccessType.FIELD)
29 @XmlType(name = "SearchResults", propOrder = {
30  "parcelshop",
31  "airLineDistance"
32 })
33 public class SearchResults {
34 
35  @XmlElement(name = "Parcelshop")
36  protected GLSParcelShop parcelshop;
37  @XmlElement(name = "AirLineDistance", required = true)
38  protected String airLineDistance;
39 
48  public GLSParcelShop getParcelshop() {
49  return parcelshop;
50  }
51 
60  public void setParcelshop(GLSParcelShop value) {
61  this.parcelshop = value;
62  }
63 
72  public String getAirLineDistance() {
73  return airLineDistance;
74  }
75 
84  public void setAirLineDistance(String value) {
85  this.airLineDistance = value;
86  }
87 
88 }