GLS ShipIT  2.8.11
GLS ShipIT - REST services
GLSPhonenumber.java
Go to the documentation of this file.
1 
2 package eu.glsgroup.ws.parcelshopsearch;
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 
30 @XmlAccessorType(XmlAccessType.FIELD)
31 @XmlType(name = "GLSPhonenumber", propOrder = {
32  "country",
33  "region",
34  "contact",
35  "extension"
36 })
37 public class GLSPhonenumber {
38 
39  @XmlElement(name = "Country")
40  protected String country;
41  @XmlElement(name = "Region")
42  protected String region;
43  @XmlElement(name = "Contact")
44  protected String contact;
45  @XmlElement(name = "Extension")
46  protected String extension;
47 
56  public String getCountry() {
57  return country;
58  }
59 
68  public void setCountry(String value) {
69  this.country = value;
70  }
71 
80  public String getRegion() {
81  return region;
82  }
83 
92  public void setRegion(String value) {
93  this.region = value;
94  }
95 
104  public String getContact() {
105  return contact;
106  }
107 
116  public void setContact(String value) {
117  this.contact = value;
118  }
119 
128  public String getExtension() {
129  return extension;
130  }
131 
140  public void setExtension(String value) {
141  this.extension = value;
142  }
143 
144 }