GLS ShipIT
GLS ShipIT - REST services
 All Classes Namespaces Files Functions Variables Enumerator Pages
GLSAddress.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 
40 @XmlAccessorType(XmlAccessType.FIELD)
41 @XmlType(name = "GLSAddress", propOrder = {
42  "name1",
43  "name2",
44  "name3",
45  "contactName",
46  "street1",
47  "blockNo1",
48  "street2",
49  "blockNo2",
50  "zipCode",
51  "city",
52  "province",
53  "country"
54 })
55 public class GLSAddress {
56 
57  @XmlElement(name = "Name1", required = true)
58  protected String name1;
59  @XmlElement(name = "Name2")
60  protected String name2;
61  @XmlElement(name = "Name3")
62  protected String name3;
63  @XmlElement(name = "ContactName")
64  protected String contactName;
65  @XmlElement(name = "Street1", required = true)
66  protected String street1;
67  @XmlElement(name = "BlockNo1")
68  protected String blockNo1;
69  @XmlElement(name = "Street2")
70  protected String street2;
71  @XmlElement(name = "BlockNo2")
72  protected String blockNo2;
73  @XmlElement(name = "ZipCode", required = true)
74  protected String zipCode;
75  @XmlElement(name = "City", required = true)
76  protected String city;
77  @XmlElement(name = "Province")
78  protected String province;
79  @XmlElement(name = "Country", required = true)
80  protected String country;
81 
90  public String getName1() {
91  return name1;
92  }
93 
102  public void setName1(String value) {
103  this.name1 = value;
104  }
105 
114  public String getName2() {
115  return name2;
116  }
117 
126  public void setName2(String value) {
127  this.name2 = value;
128  }
129 
138  public String getName3() {
139  return name3;
140  }
141 
150  public void setName3(String value) {
151  this.name3 = value;
152  }
153 
162  public String getContactName() {
163  return contactName;
164  }
165 
174  public void setContactName(String value) {
175  this.contactName = value;
176  }
177 
186  public String getStreet1() {
187  return street1;
188  }
189 
198  public void setStreet1(String value) {
199  this.street1 = value;
200  }
201 
210  public String getBlockNo1() {
211  return blockNo1;
212  }
213 
222  public void setBlockNo1(String value) {
223  this.blockNo1 = value;
224  }
225 
234  public String getStreet2() {
235  return street2;
236  }
237 
246  public void setStreet2(String value) {
247  this.street2 = value;
248  }
249 
258  public String getBlockNo2() {
259  return blockNo2;
260  }
261 
270  public void setBlockNo2(String value) {
271  this.blockNo2 = value;
272  }
273 
282  public String getZipCode() {
283  return zipCode;
284  }
285 
294  public void setZipCode(String value) {
295  this.zipCode = value;
296  }
297 
306  public String getCity() {
307  return city;
308  }
309 
318  public void setCity(String value) {
319  this.city = value;
320  }
321 
330  public String getProvince() {
331  return province;
332  }
333 
342  public void setProvince(String value) {
343  this.province = value;
344  }
345 
354  public String getCountry() {
355  return country;
356  }
357 
366  public void setCountry(String value) {
367  this.country = value;
368  }
369 
370 }