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;
 
   37 @XmlAccessorType(XmlAccessType.FIELD)
 
   38 @XmlType(name = 
"", propOrder = {
 
   45 @XmlRootElement(name = 
"Address")
 
   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;
 
   67     public String getStreet() {
 
  104         this.streetNumber = value;
 
  128         this.countryCode = value;
 
  152         this.zipCode = value;