GLS ShipIT 4.0.f2
GLS ShipIT - SOAP services
Loading...
Searching...
No Matches
glsgroup/fpcs/datatypes/soap/v2/shipmentprocessing/Consignee.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.XmlSchemaType;
8import javax.xml.bind.annotation.XmlType;
9import eu.gls_group.fpcs.v1.common.CategoryType;
10
11
38@XmlAccessorType(XmlAccessType.FIELD)
39@XmlType(name = "Consignee", propOrder = {
40 "consigneeID",
41 "costCenter",
42 "category",
43 "address"
44})
45public class Consignee {
46
47 @XmlElement(name = "ConsigneeID")
48 protected String consigneeID;
49 @XmlElement(name = "CostCenter")
50 protected String costCenter;
51 @XmlElement(name = "Category")
52 @XmlSchemaType(name = "string")
53 protected CategoryType category;
54 @XmlElement(name = "Address")
55 protected Address address;
56
65 public String getConsigneeID() {
66 return consigneeID;
67 }
68
77 public void setConsigneeID(String value) {
78 this.consigneeID = value;
79 }
80
89 public String getCostCenter() {
90 return costCenter;
91 }
92
101 public void setCostCenter(String value) {
102 this.costCenter = value;
103 }
104
114 return category;
115 }
116
125 public void setCategory(CategoryType value) {
126 this.category = value;
127 }
128
138 return address;
139 }
140
149 public void setAddress(Address value) {
150 this.address = value;
151 }
152
153}