GLS ShipIT 4.0.f2
GLS ShipIT - SOAP services
Loading...
Searching...
No Matches
gls_group/fpcs/v1/shipmentprocessing/types/AllowedServicesRequestParameter.java
Go to the documentation of this file.
1
2package eu.gls_group.fpcs.v1.shipmentprocessing.types;
3
4import javax.xml.bind.annotation.XmlAccessType;
5import javax.xml.bind.annotation.XmlAccessorType;
6import javax.xml.bind.annotation.XmlElement;
7import javax.xml.bind.annotation.XmlRootElement;
8import javax.xml.bind.annotation.XmlType;
9
10
37@XmlAccessorType(XmlAccessType.FIELD)
38@XmlType(name = "", propOrder = {
39 "source",
40 "destination",
41 "contactID"
42})
43@XmlRootElement(name = "AllowedServicesRequestParameter")
45
46 @XmlElement(name = "Source", required = true)
47 protected Location source;
48 @XmlElement(name = "Destination", required = true)
49 protected Location destination;
50 @XmlElement(name = "ContactID")
51 protected String contactID;
52
61 public Location getSource() {
62 return source;
63 }
64
73 public void setSource(Location value) {
74 this.source = value;
75 }
76
86 return destination;
87 }
88
97 public void setDestination(Location value) {
98 this.destination = value;
99 }
100
109 public String getContactID() {
110 return contactID;
111 }
112
121 public void setContactID(String value) {
122 this.contactID = value;
123 }
124
125}