GLS ShipIT  3.3.20
GLS ShipIT - REST services
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.XmlSchemaType;
8 import 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 })
44 public 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 
136  public Address getAddress() {
137  return address;
138  }
139 
148  public void setAddress(Address value) {
149  this.address = value;
150  }
151 
152 }