GLS ShipIT  3.5.15
GLS ShipIT - SOAP services
glsgroup/fpcs/datatypes/soap/v2/shipmentprocessing/Consignee.java
Go to the documentation of this file.
1 
2 package eu.glsgroup.fpcs.datatypes.soap.v2.shipmentprocessing;
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;
10 
11 
38 @XmlAccessorType(XmlAccessType.FIELD)
39 @XmlType(name = "Consignee", propOrder = {
40  "consigneeID",
41  "costCenter",
42  "category",
43  "address"
44 })
45 public 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 
137  public Address getAddress() {
138  return address;
139  }
140 
149  public void setAddress(Address value) {
150  this.address = value;
151  }
152 
153 }