GLS ShipIT  2.8.11
GLS ShipIT - REST services
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 
33 @XmlAccessorType(XmlAccessType.FIELD)
34 @XmlType(name = "Location", propOrder = {
35  "countryCode",
36  "zipCode"
37 })
38 public class Location {
39 
40  @XmlElement(name = "CountryCode", required = true)
41  protected String countryCode;
42  @XmlElement(name = "ZIPCode", required = true)
43  protected String zipCode;
44 
53  public String getCountryCode() {
54  return countryCode;
55  }
56 
65  public void setCountryCode(String value) {
66  this.countryCode = value;
67  }
68 
77  public String getZIPCode() {
78  return zipCode;
79  }
80 
89  public void setZIPCode(String value) {
90  this.zipCode = value;
91  }
92 
93 }