package at.gv.util.xsd.persondata; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** * compare PostAdresseTyp * *

Java class for PostalAddressType complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="PostalAddressType">
 *   <complexContent>
 *     <extension base="{http://reference.e-government.gv.at/namespace/persondata/20020228#}AbstractAddressType">
 *       <sequence>
 *         <element name="CountryCode" minOccurs="0">
 *           <simpleType>
 *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
 *               <pattern value="[A-Z]{2}"/>
 *             </restriction>
 *           </simpleType>
 *         </element>
 *         <element name="CountryName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="PostalCode" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="Region" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="State" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="Municipality" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="MunicipalityNumber" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="Hamlet" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="HamletBilingual" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="DeliveryAddress" minOccurs="0">
 *           <complexType>
 *             <complexContent>
 *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *                 <sequence>
 *                   <element name="AddressLine" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
 *                   <element name="StreetName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *                   <element name="BuildingNumber" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *                   <element name="Unit" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *                   <element name="DoorNumber" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *                   <element name="PostOfficeBox" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *                   <element name="LivingQuality" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *                   <element name="DropOffPoint" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
 *                   <element name="AreaNumber" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *                   <element name="AddressRegisterEntry" minOccurs="0">
 *                     <complexType>
 *                       <complexContent>
 *                         <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *                           <sequence>
 *                             <element name="AddressCode" type="{http://reference.e-government.gv.at/namespace/persondata/20020228#}string7"/>
 *                             <element name="SubCode" type="{http://reference.e-government.gv.at/namespace/persondata/20020228#}string3" minOccurs="0"/>
 *                             <element name="ObjectNumber" type="{http://reference.e-government.gv.at/namespace/persondata/20020228#}string7" minOccurs="0"/>
 *                           </sequence>
 *                         </restriction>
 *                       </complexContent>
 *                     </complexType>
 *                   </element>
 *                 </sequence>
 *               </restriction>
 *             </complexContent>
 *           </complexType>
 *         </element>
 *         <element name="Recipient" maxOccurs="unbounded" minOccurs="0">
 *           <complexType>
 *             <complexContent>
 *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *                 <sequence>
 *                   <element name="PersonName" type="{http://reference.e-government.gv.at/namespace/persondata/20020228#}PersonNameType" minOccurs="0"/>
 *                   <element name="AdditionalText" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
 *                   <element name="Organization" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *                   <element name="OrganizationName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *                 </sequence>
 *               </restriction>
 *             </complexContent>
 *           </complexType>
 *         </element>
 *       </sequence>
 *       <attribute name="type" default="undefined">
 *         <simpleType>
 *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
 *             <enumeration value="postOfficeBoxAddress"/>
 *             <enumeration value="streetAddress"/>
 *             <enumeration value="militaryAddress"/>
 *             <enumeration value="undefined"/>
 *           </restriction>
 *         </simpleType>
 *       </attribute>
 *       <anyAttribute namespace='##other'/>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "PostalAddressType", propOrder = { "countryCode", "countryName", "postalCode", "region", "state", "municipality", "municipalityNumber", "hamlet", "hamletBilingual", "deliveryAddress", "recipient" }) public class PostalAddressType extends AbstractAddressType { @XmlElement(name = "CountryCode") protected String countryCode; @XmlElement(name = "CountryName") protected String countryName; @XmlElement(name = "PostalCode") protected String postalCode; @XmlElement(name = "Region") protected List region; @XmlElement(name = "State") protected String state; @XmlElement(name = "Municipality") protected String municipality; @XmlElement(name = "MunicipalityNumber") protected String municipalityNumber; @XmlElement(name = "Hamlet") protected String hamlet; @XmlElement(name = "HamletBilingual") protected String hamletBilingual; @XmlElement(name = "DeliveryAddress") protected PostalAddressType.DeliveryAddress deliveryAddress; @XmlElement(name = "Recipient") protected List recipient; @XmlAttribute(name = "type") protected String type; /** * Gets the value of the countryCode property. * * @return * possible object is * {@link String } * */ public String getCountryCode() { return countryCode; } /** * Sets the value of the countryCode property. * * @param value * allowed object is * {@link String } * */ public void setCountryCode(String value) { this.countryCode = value; } /** * Gets the value of the countryName property. * * @return * possible object is * {@link String } * */ public String getCountryName() { return countryName; } /** * Sets the value of the countryName property. * * @param value * allowed object is * {@link String } * */ public void setCountryName(String value) { this.countryName = value; } /** * Gets the value of the postalCode property. * * @return * possible object is * {@link String } * */ public String getPostalCode() { return postalCode; } /** * Sets the value of the postalCode property. * * @param value * allowed object is * {@link String } * */ public void setPostalCode(String value) { this.postalCode = value; } /** * Gets the value of the region property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the region property. * *

* For example, to add a new item, do as follows: *

     *    getRegion().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link String } * * */ public List getRegion() { if (region == null) { region = new ArrayList(); } return this.region; } /** * Gets the value of the state property. * * @return * possible object is * {@link String } * */ public String getState() { return state; } /** * Sets the value of the state property. * * @param value * allowed object is * {@link String } * */ public void setState(String value) { this.state = value; } /** * Gets the value of the municipality property. * * @return * possible object is * {@link String } * */ public String getMunicipality() { return municipality; } /** * Sets the value of the municipality property. * * @param value * allowed object is * {@link String } * */ public void setMunicipality(String value) { this.municipality = value; } /** * Gets the value of the municipalityNumber property. * * @return * possible object is * {@link String } * */ public String getMunicipalityNumber() { return municipalityNumber; } /** * Sets the value of the municipalityNumber property. * * @param value * allowed object is * {@link String } * */ public void setMunicipalityNumber(String value) { this.municipalityNumber = value; } /** * Gets the value of the hamlet property. * * @return * possible object is * {@link String } * */ public String getHamlet() { return hamlet; } /** * Sets the value of the hamlet property. * * @param value * allowed object is * {@link String } * */ public void setHamlet(String value) { this.hamlet = value; } /** * Gets the value of the hamletBilingual property. * * @return * possible object is * {@link String } * */ public String getHamletBilingual() { return hamletBilingual; } /** * Sets the value of the hamletBilingual property. * * @param value * allowed object is * {@link String } * */ public void setHamletBilingual(String value) { this.hamletBilingual = value; } /** * Gets the value of the deliveryAddress property. * * @return * possible object is * {@link PostalAddressType.DeliveryAddress } * */ public PostalAddressType.DeliveryAddress getDeliveryAddress() { return deliveryAddress; } /** * Sets the value of the deliveryAddress property. * * @param value * allowed object is * {@link PostalAddressType.DeliveryAddress } * */ public void setDeliveryAddress(PostalAddressType.DeliveryAddress value) { this.deliveryAddress = value; } /** * Gets the value of the recipient property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the recipient property. * *

* For example, to add a new item, do as follows: *

     *    getRecipient().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link PostalAddressType.Recipient } * * */ public List getRecipient() { if (recipient == null) { recipient = new ArrayList(); } return this.recipient; } /** * Gets the value of the type property. * * @return * possible object is * {@link String } * */ public String getType() { if (type == null) { return "undefined"; } else { return type; } } /** * Sets the value of the type property. * * @param value * allowed object is * {@link String } * */ public void setType(String value) { this.type = value; } /** *

Java class for anonymous complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

     * <complexType>
     *   <complexContent>
     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
     *       <sequence>
     *         <element name="AddressLine" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
     *         <element name="StreetName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
     *         <element name="BuildingNumber" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
     *         <element name="Unit" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
     *         <element name="DoorNumber" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
     *         <element name="PostOfficeBox" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
     *         <element name="LivingQuality" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
     *         <element name="DropOffPoint" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
     *         <element name="AreaNumber" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
     *         <element name="AddressRegisterEntry" minOccurs="0">
     *           <complexType>
     *             <complexContent>
     *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
     *                 <sequence>
     *                   <element name="AddressCode" type="{http://reference.e-government.gv.at/namespace/persondata/20020228#}string7"/>
     *                   <element name="SubCode" type="{http://reference.e-government.gv.at/namespace/persondata/20020228#}string3" minOccurs="0"/>
     *                   <element name="ObjectNumber" type="{http://reference.e-government.gv.at/namespace/persondata/20020228#}string7" minOccurs="0"/>
     *                 </sequence>
     *               </restriction>
     *             </complexContent>
     *           </complexType>
     *         </element>
     *       </sequence>
     *     </restriction>
     *   </complexContent>
     * </complexType>
     * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "addressLine", "streetName", "buildingNumber", "unit", "doorNumber", "postOfficeBox", "livingQuality", "dropOffPoint", "areaNumber", "addressRegisterEntry" }) public static class DeliveryAddress { @XmlElement(name = "AddressLine") protected List addressLine; @XmlElement(name = "StreetName") protected String streetName; @XmlElement(name = "BuildingNumber") protected String buildingNumber; @XmlElement(name = "Unit") protected String unit; @XmlElement(name = "DoorNumber") protected String doorNumber; @XmlElement(name = "PostOfficeBox") protected String postOfficeBox; @XmlElement(name = "LivingQuality") protected String livingQuality; @XmlElement(name = "DropOffPoint") protected Boolean dropOffPoint; @XmlElement(name = "AreaNumber") protected String areaNumber; @XmlElement(name = "AddressRegisterEntry") protected PostalAddressType.DeliveryAddress.AddressRegisterEntry addressRegisterEntry; /** * Gets the value of the addressLine property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the addressLine property. * *

* For example, to add a new item, do as follows: *

         *    getAddressLine().add(newItem);
         * 
* * *

* Objects of the following type(s) are allowed in the list * {@link String } * * */ public List getAddressLine() { if (addressLine == null) { addressLine = new ArrayList(); } return this.addressLine; } /** * Gets the value of the streetName property. * * @return * possible object is * {@link String } * */ public String getStreetName() { return streetName; } /** * Sets the value of the streetName property. * * @param value * allowed object is * {@link String } * */ public void setStreetName(String value) { this.streetName = value; } /** * Gets the value of the buildingNumber property. * * @return * possible object is * {@link String } * */ public String getBuildingNumber() { return buildingNumber; } /** * Sets the value of the buildingNumber property. * * @param value * allowed object is * {@link String } * */ public void setBuildingNumber(String value) { this.buildingNumber = value; } /** * Gets the value of the unit property. * * @return * possible object is * {@link String } * */ public String getUnit() { return unit; } /** * Sets the value of the unit property. * * @param value * allowed object is * {@link String } * */ public void setUnit(String value) { this.unit = value; } /** * Gets the value of the doorNumber property. * * @return * possible object is * {@link String } * */ public String getDoorNumber() { return doorNumber; } /** * Sets the value of the doorNumber property. * * @param value * allowed object is * {@link String } * */ public void setDoorNumber(String value) { this.doorNumber = value; } /** * Gets the value of the postOfficeBox property. * * @return * possible object is * {@link String } * */ public String getPostOfficeBox() { return postOfficeBox; } /** * Sets the value of the postOfficeBox property. * * @param value * allowed object is * {@link String } * */ public void setPostOfficeBox(String value) { this.postOfficeBox = value; } /** * Gets the value of the livingQuality property. * * @return * possible object is * {@link String } * */ public String getLivingQuality() { return livingQuality; } /** * Sets the value of the livingQuality property. * * @param value * allowed object is * {@link String } * */ public void setLivingQuality(String value) { this.livingQuality = value; } /** * Gets the value of the dropOffPoint property. * * @return * possible object is * {@link Boolean } * */ public Boolean isDropOffPoint() { return dropOffPoint; } /** * Sets the value of the dropOffPoint property. * * @param value * allowed object is * {@link Boolean } * */ public void setDropOffPoint(Boolean value) { this.dropOffPoint = value; } /** * Gets the value of the areaNumber property. * * @return * possible object is * {@link String } * */ public String getAreaNumber() { return areaNumber; } /** * Sets the value of the areaNumber property. * * @param value * allowed object is * {@link String } * */ public void setAreaNumber(String value) { this.areaNumber = value; } /** * Gets the value of the addressRegisterEntry property. * * @return * possible object is * {@link PostalAddressType.DeliveryAddress.AddressRegisterEntry } * */ public PostalAddressType.DeliveryAddress.AddressRegisterEntry getAddressRegisterEntry() { return addressRegisterEntry; } /** * Sets the value of the addressRegisterEntry property. * * @param value * allowed object is * {@link PostalAddressType.DeliveryAddress.AddressRegisterEntry } * */ public void setAddressRegisterEntry(PostalAddressType.DeliveryAddress.AddressRegisterEntry value) { this.addressRegisterEntry = value; } /** *

Java class for anonymous complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

         * <complexType>
         *   <complexContent>
         *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
         *       <sequence>
         *         <element name="AddressCode" type="{http://reference.e-government.gv.at/namespace/persondata/20020228#}string7"/>
         *         <element name="SubCode" type="{http://reference.e-government.gv.at/namespace/persondata/20020228#}string3" minOccurs="0"/>
         *         <element name="ObjectNumber" type="{http://reference.e-government.gv.at/namespace/persondata/20020228#}string7" minOccurs="0"/>
         *       </sequence>
         *     </restriction>
         *   </complexContent>
         * </complexType>
         * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "addressCode", "subCode", "objectNumber" }) public static class AddressRegisterEntry { @XmlElement(name = "AddressCode", required = true) protected String addressCode; @XmlElement(name = "SubCode") protected String subCode; @XmlElement(name = "ObjectNumber") protected String objectNumber; /** * Gets the value of the addressCode property. * * @return * possible object is * {@link String } * */ public String getAddressCode() { return addressCode; } /** * Sets the value of the addressCode property. * * @param value * allowed object is * {@link String } * */ public void setAddressCode(String value) { this.addressCode = value; } /** * Gets the value of the subCode property. * * @return * possible object is * {@link String } * */ public String getSubCode() { return subCode; } /** * Sets the value of the subCode property. * * @param value * allowed object is * {@link String } * */ public void setSubCode(String value) { this.subCode = value; } /** * Gets the value of the objectNumber property. * * @return * possible object is * {@link String } * */ public String getObjectNumber() { return objectNumber; } /** * Sets the value of the objectNumber property. * * @param value * allowed object is * {@link String } * */ public void setObjectNumber(String value) { this.objectNumber = value; } } } /** *

Java class for anonymous complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

     * <complexType>
     *   <complexContent>
     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
     *       <sequence>
     *         <element name="PersonName" type="{http://reference.e-government.gv.at/namespace/persondata/20020228#}PersonNameType" minOccurs="0"/>
     *         <element name="AdditionalText" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
     *         <element name="Organization" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
     *         <element name="OrganizationName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
     *       </sequence>
     *     </restriction>
     *   </complexContent>
     * </complexType>
     * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "personName", "additionalText", "organization", "organizationName" }) public static class Recipient { @XmlElement(name = "PersonName") protected PersonNameType personName; @XmlElement(name = "AdditionalText") protected List additionalText; @XmlElement(name = "Organization") protected String organization; @XmlElement(name = "OrganizationName") protected String organizationName; /** * Gets the value of the personName property. * * @return * possible object is * {@link PersonNameType } * */ public PersonNameType getPersonName() { return personName; } /** * Sets the value of the personName property. * * @param value * allowed object is * {@link PersonNameType } * */ public void setPersonName(PersonNameType value) { this.personName = value; } /** * Gets the value of the additionalText property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the additionalText property. * *

* For example, to add a new item, do as follows: *

         *    getAdditionalText().add(newItem);
         * 
* * *

* Objects of the following type(s) are allowed in the list * {@link String } * * */ public List getAdditionalText() { if (additionalText == null) { additionalText = new ArrayList(); } return this.additionalText; } /** * Gets the value of the organization property. * * @return * possible object is * {@link String } * */ public String getOrganization() { return organization; } /** * Sets the value of the organization property. * * @param value * allowed object is * {@link String } * */ public void setOrganization(String value) { this.organization = value; } /** * Gets the value of the organizationName property. * * @return * possible object is * {@link String } * */ public String getOrganizationName() { return organizationName; } /** * Sets the value of the organizationName property. * * @param value * allowed object is * {@link String } * */ public void setOrganizationName(String value) { this.organizationName = value; } } }