GLS ShipIT  3.5.15
GLS ShipIT - SOAP services
glsgroup/fpcs/datatypes/soap/v2/shipmentprocessing/Address.java
Go to the documentation of this file.
1 
2 package eu.glsgroup.fpcs.datatypes.soap.v2.shipmentprocessing;
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")
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  @XmlElement(name = "Email")
81  protected String email;
82  @XmlElement(name = "ContactPerson")
83  protected String contactPerson;
84  @XmlElement(name = "FixedLinePhoneNumber")
85  protected String fixedLinePhoneNumber;
86  @XmlElement(name = "MobilePhoneNumber")
87  protected String mobilePhoneNumber;
88 
97  public String getName1() {
98  return name1;
99  }
100 
109  public void setName1(String value) {
110  this.name1 = value;
111  }
112 
121  public String getName2() {
122  return name2;
123  }
124 
133  public void setName2(String value) {
134  this.name2 = value;
135  }
136 
145  public String getName3() {
146  return name3;
147  }
148 
157  public void setName3(String value) {
158  this.name3 = value;
159  }
160 
169  public String getCountryCode() {
170  return countryCode;
171  }
172 
181  public void setCountryCode(String value) {
182  this.countryCode = value;
183  }
184 
193  public String getProvince() {
194  return province;
195  }
196 
205  public void setProvince(String value) {
206  this.province = value;
207  }
208 
217  public String getZIPCode() {
218  return zipCode;
219  }
220 
229  public void setZIPCode(String value) {
230  this.zipCode = value;
231  }
232 
241  public String getCity() {
242  return city;
243  }
244 
253  public void setCity(String value) {
254  this.city = value;
255  }
256 
265  public String getStreet() {
266  return street;
267  }
268 
277  public void setStreet(String value) {
278  this.street = value;
279  }
280 
289  public String getStreetNumber() {
290  return streetNumber;
291  }
292 
301  public void setStreetNumber(String value) {
302  this.streetNumber = value;
303  }
304 
313  public String getEmail() {
314  return email;
315  }
316 
325  public void setEmail(String value) {
326  this.email = value;
327  }
328 
337  public String getContactPerson() {
338  return contactPerson;
339  }
340 
349  public void setContactPerson(String value) {
350  this.contactPerson = value;
351  }
352 
361  public String getFixedLinePhoneNumber() {
362  return fixedLinePhoneNumber;
363  }
364 
373  public void setFixedLinePhoneNumber(String value) {
374  this.fixedLinePhoneNumber = value;
375  }
376 
385  public String getMobilePhoneNumber() {
386  return mobilePhoneNumber;
387  }
388 
397  public void setMobilePhoneNumber(String value) {
398  this.mobilePhoneNumber = value;
399  }
400 
401 }