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