GLS ShipIT  2.8.11
GLS ShipIT - REST services
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 
35 @XmlAccessorType(XmlAccessType.FIELD)
36 @XmlType(name = "", propOrder = {
37  "street",
38  "streetNumber",
39  "countryCode",
40  "zipCode",
41  "city"
42 })
43 @XmlRootElement(name = "Address")
44 public class Address {
45 
46  @XmlElement(name = "Street")
47  protected String street;
48  @XmlElement(name = "StreetNumber")
49  protected String streetNumber;
50  @XmlElement(name = "CountryCode", required = true)
51  protected String countryCode;
52  @XmlElement(name = "ZIPCode", required = true)
53  protected String zipCode;
54  @XmlElement(name = "City")
55  protected String city;
56 
65  public String getStreet() {
66  return street;
67  }
68 
77  public void setStreet(String value) {
78  this.street = value;
79  }
80 
89  public String getStreetNumber() {
90  return streetNumber;
91  }
92 
101  public void setStreetNumber(String value) {
102  this.streetNumber = value;
103  }
104 
113  public String getCountryCode() {
114  return countryCode;
115  }
116 
125  public void setCountryCode(String value) {
126  this.countryCode = value;
127  }
128 
137  public String getZIPCode() {
138  return zipCode;
139  }
140 
149  public void setZIPCode(String value) {
150  this.zipCode = value;
151  }
152 
161  public String getCity() {
162  return city;
163  }
164 
173  public void setCity(String value) {
174  this.city = value;
175  }
176 
177 }