GLS ShipIT 4.0.f2
GLS ShipIT - SOAP services
Loading...
Searching...
No Matches
Delivery.java
Go to the documentation of this file.
1
2package eu.glsgroup.fpcs.datatypes.soap.v2.shipmentprocessing;
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
33@XmlAccessorType(XmlAccessType.FIELD)
34@XmlType(name = "Delivery", propOrder = {
35 "consigneeID",
36 "address"
37})
38public 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
78 return address;
79 }
80
89 public void setAddress(Address value) {
90 this.address = value;
91 }
92
93}