GLS ShipIT
GLS ShipIT - REST services
 All Classes Namespaces Files Functions Variables Enumerator Pages
common/Address.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 
44 @XmlAccessorType(XmlAccessType.FIELD)
45 @XmlType(name = "Address", propOrder = {
46  "name1",
47  "name2",
48  "name3",
49  "countryCode",
50  "province",
51  "zipCode",
52  "city",
53  "street",
54  "streetNumber",
55  "eMail",
56  "contactPerson",
57  "fixedLinePhonenumber",
58  "mobilePhoneNumber"
59 })
60 public class Address {
61 
62  @XmlElement(name = "Name1", required = true)
63  protected String name1;
64  @XmlElement(name = "Name2")
65  protected String name2;
66  @XmlElement(name = "Name3")
67  protected String name3;
68  @XmlElement(name = "CountryCode", required = true)
69  protected String countryCode;
70  @XmlElement(name = "Province")
71  protected String province;
72  @XmlElement(name = "ZIPCode", required = true)
73  protected String zipCode;
74  @XmlElement(name = "City", required = true)
75  protected String city;
76  @XmlElement(name = "Street", required = true)
77  protected String street;
78  @XmlElement(name = "StreetNumber")
79  protected String streetNumber;
80  protected String eMail;
81  @XmlElement(name = "ContactPerson")
82  protected String contactPerson;
83  @XmlElement(name = "FixedLinePhonenumber")
84  protected String fixedLinePhonenumber;
85  @XmlElement(name = "MobilePhoneNumber")
86  protected String mobilePhoneNumber;
87 
96  public String getName1() {
97  return name1;
98  }
99 
108  public void setName1(String value) {
109  this.name1 = value;
110  }
111 
120  public String getName2() {
121  return name2;
122  }
123 
132  public void setName2(String value) {
133  this.name2 = value;
134  }
135 
144  public String getName3() {
145  return name3;
146  }
147 
156  public void setName3(String value) {
157  this.name3 = value;
158  }
159 
168  public String getCountryCode() {
169  return countryCode;
170  }
171 
180  public void setCountryCode(String value) {
181  this.countryCode = value;
182  }
183 
192  public String getProvince() {
193  return province;
194  }
195 
204  public void setProvince(String value) {
205  this.province = value;
206  }
207 
216  public String getZIPCode() {
217  return zipCode;
218  }
219 
228  public void setZIPCode(String value) {
229  this.zipCode = value;
230  }
231 
240  public String getCity() {
241  return city;
242  }
243 
252  public void setCity(String value) {
253  this.city = value;
254  }
255 
264  public String getStreet() {
265  return street;
266  }
267 
276  public void setStreet(String value) {
277  this.street = value;
278  }
279 
288  public String getStreetNumber() {
289  return streetNumber;
290  }
291 
300  public void setStreetNumber(String value) {
301  this.streetNumber = value;
302  }
303 
312  public String getEMail() {
313  return eMail;
314  }
315 
324  public void setEMail(String value) {
325  this.eMail = value;
326  }
327 
336  public String getContactPerson() {
337  return contactPerson;
338  }
339 
348  public void setContactPerson(String value) {
349  this.contactPerson = value;
350  }
351 
360  public String getFixedLinePhonenumber() {
361  return fixedLinePhonenumber;
362  }
363 
372  public void setFixedLinePhonenumber(String value) {
373  this.fixedLinePhonenumber = value;
374  }
375 
384  public String getMobilePhoneNumber() {
385  return mobilePhoneNumber;
386  }
387 
396  public void setMobilePhoneNumber(String value) {
397  this.mobilePhoneNumber = value;
398  }
399 
400 }