GLS ShipIT  2.8.11
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.XmlType;
8 
9 
34 @XmlAccessorType(XmlAccessType.FIELD)
35 @XmlType(name = "Consignee", propOrder = {
36  "consigneeID",
37  "costCenter",
38  "category",
39  "address"
40 })
41 public class Consignee {
42 
43  @XmlElement(name = "ConsigneeID")
44  protected String consigneeID;
45  @XmlElement(name = "CostCenter")
46  protected String costCenter;
47  @XmlElement(name = "Category")
48  protected CategoryType category;
49  @XmlElement(name = "Address")
50  protected Address address;
51 
60  public String getConsigneeID() {
61  return consigneeID;
62  }
63 
72  public void setConsigneeID(String value) {
73  this.consigneeID = value;
74  }
75 
84  public String getCostCenter() {
85  return costCenter;
86  }
87 
96  public void setCostCenter(String value) {
97  this.costCenter = value;
98  }
99 
109  return category;
110  }
111 
120  public void setCategory(CategoryType value) {
121  this.category = value;
122  }
123 
132  public Address getAddress() {
133  return address;
134  }
135 
144  public void setAddress(Address value) {
145  this.address = value;
146  }
147 
148 }