GLS ShipIT  2.7.11
GLS ShipIT - REST services
AllowedServicesRequestParameter.java
Go to the documentation of this file.
1 
2 package eu.glsgroup.fpcs.datatypes.soap.v1.shipmentprocessing;
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 
36 @XmlAccessorType(XmlAccessType.FIELD)
37 @XmlType(name = "", propOrder = {
38  "source",
39  "destination"
40 })
41 @XmlRootElement(name = "AllowedServicesRequestParameter")
43 
44  @XmlElement(name = "Source", required = true)
45  protected Location source;
46  @XmlElement(name = "Destination", required = true)
47  protected Location destination;
48 
57  public Location getSource() {
58  return source;
59  }
60 
69  public void setSource(Location value) {
70  this.source = value;
71  }
72 
82  return destination;
83  }
84 
93  public void setDestination(Location value) {
94  this.destination = value;
95  }
96 
97 }