GLS ShipIT  2.8.11
GLS ShipIT - SOAP services
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 
32 @XmlAccessorType(XmlAccessType.FIELD)
33 @XmlType(name = "", propOrder = {
34  "source",
35  "destination"
36 })
37 @XmlRootElement(name = "FromToLocation")
38 public class FromToLocation {
39 
40  @XmlElement(name = "Source", required = true)
41  protected Source source;
42  @XmlElement(name = "Destination", required = true)
43  protected Destination destination;
44 
53  public Source getSource() {
54  return source;
55  }
56 
65  public void setSource(Source value) {
66  this.source = value;
67  }
68 
78  return destination;
79  }
80 
89  public void setDestination(Destination value) {
90  this.destination = value;
91  }
92 
93 }