GLS ShipIT  2.8.11
GLS ShipIT - SOAP 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 
34 @XmlAccessorType(XmlAccessType.FIELD)
35 @XmlType(name = "", propOrder = {
36  "source",
37  "destination"
38 })
39 @XmlRootElement(name = "AllowedServicesRequestParameter")
41 
42  @XmlElement(name = "Source", required = true)
43  protected Location source;
44  @XmlElement(name = "Destination", required = true)
45  protected Location destination;
46 
55  public Location getSource() {
56  return source;
57  }
58 
67  public void setSource(Location value) {
68  this.source = value;
69  }
70 
80  return destination;
81  }
82 
91  public void setDestination(Location value) {
92  this.destination = value;
93  }
94 
95 }