GLS ShipIT
GLS ShipIT - REST services
 All Classes Namespaces Files Functions Variables Enumerator Pages
timeframe/Address.java
Go to the documentation of this file.
1 
2 package eu.glsgroup.fpcs.datatypes.soap.v1.timeframe;
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.XmlRootElement;
8 import javax.xml.bind.annotation.XmlType;
9 
10 
37 @XmlAccessorType(XmlAccessType.FIELD)
38 @XmlType(name = "", propOrder = {
39  "street",
40  "streetNumber",
41  "countryCode",
42  "zipCode",
43  "city"
44 })
45 @XmlRootElement(name = "Address")
46 public class Address {
47 
48  @XmlElement(name = "Street")
49  protected String street;
50  @XmlElement(name = "StreetNumber")
51  protected String streetNumber;
52  @XmlElement(name = "CountryCode", required = true)
53  protected String countryCode;
54  @XmlElement(name = "ZIPCode", required = true)
55  protected String zipCode;
56  @XmlElement(name = "City")
57  protected String city;
58 
67  public String getStreet() {
68  return street;
69  }
70 
79  public void setStreet(String value) {
80  this.street = value;
81  }
82 
91  public String getStreetNumber() {
92  return streetNumber;
93  }
94 
103  public void setStreetNumber(String value) {
104  this.streetNumber = value;
105  }
106 
115  public String getCountryCode() {
116  return countryCode;
117  }
118 
127  public void setCountryCode(String value) {
128  this.countryCode = value;
129  }
130 
139  public String getZIPCode() {
140  return zipCode;
141  }
142 
151  public void setZIPCode(String value) {
152  this.zipCode = value;
153  }
154 
163  public String getCity() {
164  return city;
165  }
166 
175  public void setCity(String value) {
176  this.city = value;
177  }
178 
179 }