GLS ShipIT 4.0.f2
GLS ShipIT - SOAP services
Loading...
Searching...
No Matches
Requester.java
Go to the documentation of this file.
1
2package eu.glsgroup.fpcs.datatypes.soap.v2.shipmentprocessing;
3
4import javax.xml.bind.annotation.XmlAccessType;
5import javax.xml.bind.annotation.XmlAccessorType;
6import javax.xml.bind.annotation.XmlElement;
7import javax.xml.bind.annotation.XmlType;
8
9
32@XmlAccessorType(XmlAccessType.FIELD)
33@XmlType(name = "Requester", propOrder = {
34 "contactID"
35})
36public 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}