GLS ShipIT
GLS ShipIT - REST services
 All Classes Namespaces Files Functions Variables Enumerator Pages
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 
36 @XmlAccessorType(XmlAccessType.FIELD)
37 @XmlType(name = "Shipper", propOrder = {
38  "contactID",
39  "alternativeShipperAddress",
40  "frAlphaCustomerReference"
41 })
42 public class Shipper {
43 
44  @XmlElement(name = "ContactID", required = true)
45  protected String contactID;
46  @XmlElement(name = "AlternativeShipperAddress")
47  protected Address alternativeShipperAddress;
48  @XmlElement(name = "FRAlphaCustomerReference")
49  protected String frAlphaCustomerReference;
50 
59  public String getContactID() {
60  return contactID;
61  }
62 
71  public void setContactID(String value) {
72  this.contactID = value;
73  }
74 
84  return alternativeShipperAddress;
85  }
86 
96  this.alternativeShipperAddress = value;
97  }
98 
107  public String getFRAlphaCustomerReference() {
108  return frAlphaCustomerReference;
109  }
110 
119  public void setFRAlphaCustomerReference(String value) {
120  this.frAlphaCustomerReference = value;
121  }
122 
123 }