2 package eu.glsgroup.fpcs.datatypes.soap.v1.timeframe;
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;
35 @XmlAccessorType(XmlAccessType.FIELD)
36 @XmlType(name =
"", propOrder = {
43 @XmlRootElement(name =
"Address")
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;
65 public String getStreet() {
102 this.streetNumber = value;
126 this.countryCode = value;
150 this.zipCode = value;
void setStreet(String value)
void setCountryCode(String value)
void setZIPCode(String value)
void setCity(String value)
void setStreetNumber(String value)