GLS ShipIT  3.5.15
GLS ShipIT - REST services
Requester.java
Go to the documentation of this file.
1 
2 package eu.glsgroup.fpcs.datatypes.soap.v2.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.XmlType;
8 
9 
32 @XmlAccessorType(XmlAccessType.FIELD)
33 @XmlType(name = "Requester", propOrder = {
34  "contactID"
35 })
36 public class Requester {
37 
38  @XmlElement(name = "ContactID", required = true)
39  protected String contactID;
40 
49  public String getContactID() {
50  return contactID;
51  }
52 
61  public void setContactID(String value) {
62  this.contactID = value;
63  }
64 
65 }