package at.gv.util.xsd.ersb.personendata1; 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.XmlElement; import javax.xml.bind.annotation.XmlType; import at.gv.util.xsd.ersb.BestandsnachweisErsb; import at.gv.util.xsd.ersb.BestandszeitraumErsb; import at.gv.util.xsd.ersb.RechtstatsachenErsb; import at.gv.util.xsd.ersb.VertretungErsb; /** * Container um eine Person und ihre Adressen zu speichern * *

Java class for PersonenDatenTyp complex type. * *

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

 * <complexType name="PersonenDatenTyp">
 *   <complexContent>
 *     <extension base="{http://statistik.at/namespace/ersb/persondata/1#}AbstractPersonType">
 *       <sequence>
 *         <element ref="{http://statistik.at/namespace/ersb/persondata/1#}NichtNatuerlichePerson"/>
 *         <element ref="{http://statistik.at/namespace/ersb/persondata/1#}TypisiertePostAdresse" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="Zusatzdaten" minOccurs="0">
 *           <complexType>
 *             <complexContent>
 *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *                 <sequence minOccurs="0">
 *                   <element ref="{http://statistik.at/namespace/ersb/1#}Bestandszeitraum" maxOccurs="unbounded" minOccurs="0"/>
 *                   <element ref="{http://statistik.at/namespace/ersb/1#}Bestandsnachweis" maxOccurs="unbounded" minOccurs="0"/>
 *                   <element ref="{http://statistik.at/namespace/ersb/1#}Vertretung" maxOccurs="unbounded" minOccurs="0"/>
 *                   <element ref="{http://statistik.at/namespace/ersb/1#}Rechtstatsachen" maxOccurs="unbounded" minOccurs="0"/>
 *                   <element name="PersonenDaten" type="{http://statistik.at/namespace/ersb/persondata/1#}PersonenDatenZusatzdatenTyp" maxOccurs="unbounded" minOccurs="0"/>
 *                 </sequence>
 *               </restriction>
 *             </complexContent>
 *           </complexType>
 *         </element>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "PersonenDatenTyp", propOrder = { "nichtNatuerlichePerson", "typisiertePostAdresse", "zusatzdaten" }) public class PersonenDatenTyp extends AbstractPersonType { @XmlElement(name = "NichtNatuerlichePerson", required = true) protected NichtNatuerlichePersonTyp nichtNatuerlichePerson; @XmlElement(name = "TypisiertePostAdresse") protected List typisiertePostAdresse; @XmlElement(name = "Zusatzdaten") protected PersonenDatenTyp.Zusatzdaten zusatzdaten; /** * Gets the value of the nichtNatuerlichePerson property. * * @return * possible object is * {@link NichtNatuerlichePersonTyp } * */ public NichtNatuerlichePersonTyp getNichtNatuerlichePerson() { return nichtNatuerlichePerson; } /** * Sets the value of the nichtNatuerlichePerson property. * * @param value * allowed object is * {@link NichtNatuerlichePersonTyp } * */ public void setNichtNatuerlichePerson(NichtNatuerlichePersonTyp value) { this.nichtNatuerlichePerson = value; } /** * Gets the value of the typisiertePostAdresse 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 typisiertePostAdresse property. * *

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

     *    getTypisiertePostAdresse().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link TypisiertePostAdresseTyp } * * */ public List getTypisiertePostAdresse() { if (typisiertePostAdresse == null) { typisiertePostAdresse = new ArrayList(); } return this.typisiertePostAdresse; } /** * Gets the value of the zusatzdaten property. * * @return * possible object is * {@link PersonenDatenTyp.Zusatzdaten } * */ public PersonenDatenTyp.Zusatzdaten getZusatzdaten() { return zusatzdaten; } /** * Sets the value of the zusatzdaten property. * * @param value * allowed object is * {@link PersonenDatenTyp.Zusatzdaten } * */ public void setZusatzdaten(PersonenDatenTyp.Zusatzdaten value) { this.zusatzdaten = 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 minOccurs="0">
     *         <element ref="{http://statistik.at/namespace/ersb/1#}Bestandszeitraum" maxOccurs="unbounded" minOccurs="0"/>
     *         <element ref="{http://statistik.at/namespace/ersb/1#}Bestandsnachweis" maxOccurs="unbounded" minOccurs="0"/>
     *         <element ref="{http://statistik.at/namespace/ersb/1#}Vertretung" maxOccurs="unbounded" minOccurs="0"/>
     *         <element ref="{http://statistik.at/namespace/ersb/1#}Rechtstatsachen" maxOccurs="unbounded" minOccurs="0"/>
     *         <element name="PersonenDaten" type="{http://statistik.at/namespace/ersb/persondata/1#}PersonenDatenZusatzdatenTyp" maxOccurs="unbounded" minOccurs="0"/>
     *       </sequence>
     *     </restriction>
     *   </complexContent>
     * </complexType>
     * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "bestandszeitraum", "bestandsnachweis", "vertretung", "rechtstatsachen", "personenDaten" }) public static class Zusatzdaten { @XmlElement(name = "Bestandszeitraum", namespace = "http://statistik.at/namespace/ersb/1#") protected List bestandszeitraum; @XmlElement(name = "Bestandsnachweis", namespace = "http://statistik.at/namespace/ersb/1#") protected List bestandsnachweis; @XmlElement(name = "Vertretung", namespace = "http://statistik.at/namespace/ersb/1#") protected List vertretung; @XmlElement(name = "Rechtstatsachen", namespace = "http://statistik.at/namespace/ersb/1#") protected List rechtstatsachen; @XmlElement(name = "PersonenDaten") protected List personenDaten; /** * Gets the value of the bestandszeitraum 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 bestandszeitraum property. * *

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

         *    getBestandszeitraum().add(newItem);
         * 
* * *

* Objects of the following type(s) are allowed in the list * {@link BestandszeitraumErsb } * * */ public List getBestandszeitraum() { if (bestandszeitraum == null) { bestandszeitraum = new ArrayList(); } return this.bestandszeitraum; } /** * Gets the value of the bestandsnachweis 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 bestandsnachweis property. * *

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

         *    getBestandsnachweis().add(newItem);
         * 
* * *

* Objects of the following type(s) are allowed in the list * {@link BestandsnachweisErsb } * * */ public List getBestandsnachweis() { if (bestandsnachweis == null) { bestandsnachweis = new ArrayList(); } return this.bestandsnachweis; } /** * Gets the value of the vertretung 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 vertretung property. * *

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

         *    getVertretung().add(newItem);
         * 
* * *

* Objects of the following type(s) are allowed in the list * {@link VertretungErsb } * * */ public List getVertretung() { if (vertretung == null) { vertretung = new ArrayList(); } return this.vertretung; } /** * Gets the value of the rechtstatsachen 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 rechtstatsachen property. * *

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

         *    getRechtstatsachen().add(newItem);
         * 
* * *

* Objects of the following type(s) are allowed in the list * {@link RechtstatsachenErsb } * * */ public List getRechtstatsachen() { if (rechtstatsachen == null) { rechtstatsachen = new ArrayList(); } return this.rechtstatsachen; } /** * Gets the value of the personenDaten 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 personenDaten property. * *

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

         *    getPersonenDaten().add(newItem);
         * 
* * *

* Objects of the following type(s) are allowed in the list * {@link PersonenDatenZusatzdatenTyp } * * */ public List getPersonenDaten() { if (personenDaten == null) { personenDaten = new ArrayList(); } return this.personenDaten; } } }