GLS ShipIT
GLS ShipIT - REST services
 All Classes Namespaces Files Functions Variables Enumerator Pages
Nationality.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 
33 @XmlAccessorType(XmlAccessType.FIELD)
34 @XmlType(name = "Nationality", propOrder = {
35  "countryCode"
36 })
37 public class Nationality {
38 
39  @XmlElement(name = "CountryCode", required = true)
40  protected String countryCode;
41 
50  public String getCountryCode() {
51  return countryCode;
52  }
53 
62  public void setCountryCode(String value) {
63  this.countryCode = value;
64  }
65 
66 }