GLS ShipIT
GLS ShipIT - REST services
 All Classes Namespaces Files Functions Variables Enumerator Pages
FromToLocation.java
Go to the documentation of this file.
1 
2 package eu.glsgroup.fpcs.datatypes.soap.v1.timeframe;
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 
34 @XmlAccessorType(XmlAccessType.FIELD)
35 @XmlType(name = "", propOrder = {
36  "source",
37  "destination"
38 })
39 @XmlRootElement(name = "FromToLocation")
40 public class FromToLocation {
41 
42  @XmlElement(name = "Source", required = true)
43  protected Source source;
44  @XmlElement(name = "Destination", required = true)
45  protected Destination destination;
46 
55  public Source getSource() {
56  return source;
57  }
58 
67  public void setSource(Source value) {
68  this.source = value;
69  }
70 
80  return destination;
81  }
82 
91  public void setDestination(Destination value) {
92  this.destination = value;
93  }
94 
95 }