GLS ShipIT
GLS ShipIT - REST services
 All Classes Namespaces Files Functions Variables Enumerator Pages
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 
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 }