GLS ShipIT  2.8.11
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 
34 @XmlAccessorType(XmlAccessType.FIELD)
35 @XmlType(name = "Shipper", propOrder = {
36  "contactID",
37  "alternativeShipperAddress",
38  "frAlphaCustomerReference"
39 })
40 public class Shipper {
41 
42  @XmlElement(name = "ContactID", required = true)
43  protected String contactID;
44  @XmlElement(name = "AlternativeShipperAddress")
45  protected Address alternativeShipperAddress;
46  @XmlElement(name = "FRAlphaCustomerReference")
47  protected String frAlphaCustomerReference;
48 
57  public String getContactID() {
58  return contactID;
59  }
60 
69  public void setContactID(String value) {
70  this.contactID = value;
71  }
72 
82  return alternativeShipperAddress;
83  }
84 
94  this.alternativeShipperAddress = value;
95  }
96 
105  public String getFRAlphaCustomerReference() {
106  return frAlphaCustomerReference;
107  }
108 
117  public void setFRAlphaCustomerReference(String value) {
118  this.frAlphaCustomerReference = value;
119  }
120 
121 }