2 package eu.glsgroup.fpcs.datatypes.soap.v1.common;
 
    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;
 
   44 @XmlAccessorType(XmlAccessType.FIELD)
 
   45 @XmlType(name = 
"Address", propOrder = {
 
   57     "fixedLinePhonenumber",
 
   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", required = true)
 
   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     protected String eMail;
 
   81     @XmlElement(name = "ContactPerson")
 
   82     protected String contactPerson;
 
   83     @XmlElement(name = "FixedLinePhonenumber")
 
   84     protected String fixedLinePhonenumber;
 
   85     @XmlElement(name = "MobilePhoneNumber")
 
   86     protected String mobilePhoneNumber;
 
   96     public String getName1() {
 
  181         this.countryCode = value;
 
  205         this.province = value;
 
  229         this.zipCode = value;
 
  301         this.streetNumber = value;
 
  337         return contactPerson;
 
  349         this.contactPerson = value;
 
  361         return fixedLinePhonenumber;
 
  373         this.fixedLinePhonenumber = value;
 
  385         return mobilePhoneNumber;
 
  397         this.mobilePhoneNumber = value;