GLS ShipIT
GLS ShipIT - REST services
 All Classes Namespaces Files Functions Variables Enumerator Pages
Consignee.java
Go to the documentation of this file.
1 
2 package eu.glsgroup.fpcs.datatypes.soap.v1.common;
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 
36 @XmlAccessorType(XmlAccessType.FIELD)
37 @XmlType(name = "Consignee", propOrder = {
38  "consigneeID",
39  "costCenter",
40  "category",
41  "address"
42 })
43 public class Consignee {
44 
45  @XmlElement(name = "ConsigneeID")
46  protected String consigneeID;
47  @XmlElement(name = "CostCenter")
48  protected String costCenter;
49  @XmlElement(name = "Category")
50  protected CategoryType category;
51  @XmlElement(name = "Address")
52  protected Address address;
53 
62  public String getConsigneeID() {
63  return consigneeID;
64  }
65 
74  public void setConsigneeID(String value) {
75  this.consigneeID = value;
76  }
77 
86  public String getCostCenter() {
87  return costCenter;
88  }
89 
98  public void setCostCenter(String value) {
99  this.costCenter = value;
100  }
101 
111  return category;
112  }
113 
122  public void setCategory(CategoryType value) {
123  this.category = value;
124  }
125 
134  public Address getAddress() {
135  return address;
136  }
137 
146  public void setAddress(Address value) {
147  this.address = value;
148  }
149 
150 }