GLS ShipIT 4.0.f2
GLS ShipIT - SOAP services
Loading...
Searching...
No Matches
gls_group/fpcs/v1/common/Shipper.java
Go to the documentation of this file.
1
2package eu.gls_group.fpcs.v1.common;
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
37@XmlAccessorType(XmlAccessType.FIELD)
38@XmlType(name = "Shipper", propOrder = {
39 "contactID",
40 "alternativeShipperAddress",
41 "frAlphaCustomerReference",
42 "address"
43})
44public 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
112 return frAlphaCustomerReference;
113 }
114
123 public void setFRAlphaCustomerReference(String value) {
124 this.frAlphaCustomerReference = value;
125 }
126
136 return address;
137 }
138
147 public void setAddress(Address value) {
148 this.address = value;
149 }
150
151}