GLS ShipIT  3.5.15
GLS ShipIT - SOAP services
Delivery.java
Go to the documentation of this file.
1 
2 package eu.glsgroup.fpcs.datatypes.soap.v2.shipmentprocessing;
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 
33 @XmlAccessorType(XmlAccessType.FIELD)
34 @XmlType(name = "Delivery", propOrder = {
35  "consigneeID",
36  "address"
37 })
38 public class Delivery {
39 
40  @XmlElement(name = "ConsigneeID", required = true)
41  protected String consigneeID;
42  @XmlElement(name = "Address")
43  protected Address address;
44 
53  public String getConsigneeID() {
54  return consigneeID;
55  }
56 
65  public void setConsigneeID(String value) {
66  this.consigneeID = value;
67  }
68 
77  public Address getAddress() {
78  return address;
79  }
80 
89  public void setAddress(Address value) {
90  this.address = value;
91  }
92 
93 }