GLS ShipIT  2.8.11
GLS ShipIT - REST services
Area.java
Go to the documentation of this file.
1 
2 package eu.glsgroup.fpcs.datatypes.soap.v1.parcelshop;
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.XmlRootElement;
8 import javax.xml.bind.annotation.XmlType;
9 
10 
31 @XmlAccessorType(XmlAccessType.FIELD)
32 @XmlType(name = "", propOrder = {
33  "from",
34  "to"
35 })
36 @XmlRootElement(name = "Area")
37 public class Area {
38 
39  @XmlElement(name = "From", required = true)
40  protected Location from;
41  @XmlElement(name = "To", required = true)
42  protected Location to;
43 
52  public Location getFrom() {
53  return from;
54  }
55 
64  public void setFrom(Location value) {
65  this.from = value;
66  }
67 
76  public Location getTo() {
77  return to;
78  }
79 
88  public void setTo(Location value) {
89  this.to = value;
90  }
91 
92 }