GLS ShipIT
GLS ShipIT - REST services
 All Classes Namespaces Files Functions Variables Enumerator Pages
shipmentprocessing/Location.java
Go to the documentation of this file.
1 
2 package eu.glsgroup.fpcs.datatypes.soap.v1.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.XmlType;
8 
9 
35 @XmlAccessorType(XmlAccessType.FIELD)
36 @XmlType(name = "Location", propOrder = {
37  "countryCode",
38  "zipCode"
39 })
40 public class Location {
41 
42  @XmlElement(name = "CountryCode", required = true)
43  protected String countryCode;
44  @XmlElement(name = "ZIPCode", required = true)
45  protected String zipCode;
46 
55  public String getCountryCode() {
56  return countryCode;
57  }
58 
67  public void setCountryCode(String value) {
68  this.countryCode = value;
69  }
70 
79  public String getZIPCode() {
80  return zipCode;
81  }
82 
91  public void setZIPCode(String value) {
92  this.zipCode = value;
93  }
94 
95 }