GLS ShipIT  3.3.20
GLS ShipIT - REST services
Shipper.java
Go to the documentation of this file.
1 
2 package eu.glsgroup.fpcs.datatypes.soap.v1.common;
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 
37 @XmlAccessorType(XmlAccessType.FIELD)
38 @XmlType(name = "Shipper", propOrder = {
39  "contactID",
40  "alternativeShipperAddress",
41  "frAlphaCustomerReference",
42  "address"
43 })
44 public class Shipper {
45 
46  @XmlElement(name = "ContactID", required = true)
47  protected String contactID;
48  @XmlElement(name = "AlternativeShipperAddress")
49  protected Address alternativeShipperAddress;
50  @XmlElement(name = "FRAlphaCustomerReference")
51  protected String frAlphaCustomerReference;
52  @XmlElement(name = "Address")
53  protected Address address;
54 
63  public String getContactID() {
64  return contactID;
65  }
66 
75  public void setContactID(String value) {
76  this.contactID = value;
77  }
78 
88  return alternativeShipperAddress;
89  }
90 
100  this.alternativeShipperAddress = value;
101  }
102 
111  public String getFRAlphaCustomerReference() {
112  return frAlphaCustomerReference;
113  }
114 
123  public void setFRAlphaCustomerReference(String value) {
124  this.frAlphaCustomerReference = value;
125  }
126 
135  public Address getAddress() {
136  return address;
137  }
138 
147  public void setAddress(Address value) {
148  this.address = value;
149  }
150 
151 }