GLS ShipIT  2.7.11
GLS ShipIT - SOAP 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 
35 @XmlAccessorType(XmlAccessType.FIELD)
36 @XmlType(name = "Consignee", propOrder = {
37  "consigneeID",
38  "costCenter",
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 = "Address")
48  protected Address address;
49 
58  public String getConsigneeID() {
59  return consigneeID;
60  }
61 
70  public void setConsigneeID(String value) {
71  this.consigneeID = value;
72  }
73 
82  public String getCostCenter() {
83  return costCenter;
84  }
85 
94  public void setCostCenter(String value) {
95  this.costCenter = value;
96  }
97 
106  public Address getAddress() {
107  return address;
108  }
109 
118  public void setAddress(Address value) {
119  this.address = value;
120  }
121 
122 }