GLS ShipIT 4.0.f2
GLS ShipIT - SOAP services
Loading...
Searching...
No Matches
GLSPhonenumber.java
Go to the documentation of this file.
1
2package eu.glsgroup.ws.parcelshopsearch;
3
4import javax.xml.bind.annotation.XmlAccessType;
5import javax.xml.bind.annotation.XmlAccessorType;
6import javax.xml.bind.annotation.XmlElement;
7import javax.xml.bind.annotation.XmlType;
8
9
32@XmlAccessorType(XmlAccessType.FIELD)
33@XmlType(name = "GLSPhonenumber", propOrder = {
34 "country",
35 "region",
36 "contact",
37 "extension"
38})
39public class GLSPhonenumber {
40
41 @XmlElement(name = "Country")
42 protected String country;
43 @XmlElement(name = "Region")
44 protected String region;
45 @XmlElement(name = "Contact")
46 protected String contact;
47 @XmlElement(name = "Extension")
48 protected String extension;
49
58 public String getCountry() {
59 return country;
60 }
61
70 public void setCountry(String value) {
71 this.country = value;
72 }
73
82 public String getRegion() {
83 return region;
84 }
85
94 public void setRegion(String value) {
95 this.region = value;
96 }
97
106 public String getContact() {
107 return contact;
108 }
109
118 public void setContact(String value) {
119 this.contact = value;
120 }
121
130 public String getExtension() {
131 return extension;
132 }
133
142 public void setExtension(String value) {
143 this.extension = value;
144 }
145
146}