package at.gv.util.xsd.ersb.personendata1; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.adapters.CollapsedStringAdapter; import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; /** * entspricht PostalAddressType * *

Java class for PostAdresseTyp complex type. * *

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

 * <complexType name="PostAdresseTyp">
 *   <complexContent>
 *     <extension base="{http://statistik.at/namespace/ersb/persondata/1#}AbstractAddressType">
 *       <sequence>
 *         <element name="Staatscode" minOccurs="0">
 *           <simpleType>
 *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
 *               <pattern value="[A-Z]{3}"/>
 *             </restriction>
 *           </simpleType>
 *         </element>
 *         <element name="Postleitzahl" type="{http://www.w3.org/2001/XMLSchema}token" minOccurs="0"/>
 *         <element name="Gemeinde" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="Gemeindekennziffer" type="{http://www.w3.org/2001/XMLSchema}anyType" minOccurs="0"/>
 *         <element name="Ortschaft" type="{http://www.w3.org/2001/XMLSchema}token" minOccurs="0"/>
 *         <element name="Zustelladresse" minOccurs="0">
 *           <complexType>
 *             <complexContent>
 *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *                 <sequence>
 *                   <element name="Strassenname" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *                   <element name="Orientierungsnummer" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *                   <element name="Gebaeude" type="{http://www.w3.org/2001/XMLSchema}token" minOccurs="0"/>
 *                   <element name="Nutzungseinheit" type="{http://www.w3.org/2001/XMLSchema}token" minOccurs="0"/>
 *                 </sequence>
 *               </restriction>
 *             </complexContent>
 *           </complexType>
 *         </element>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "PostAdresseTyp", propOrder = { "staatscode", "postleitzahl", "gemeinde", "gemeindekennziffer", "ortschaft", "zustelladresse" }) public class PostAdresseTyp extends AbstractAddressType { @XmlElement(name = "Staatscode") protected String staatscode; @XmlElement(name = "Postleitzahl") @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchemaType(name = "token") protected String postleitzahl; @XmlElement(name = "Gemeinde") protected String gemeinde; @XmlElement(name = "Gemeindekennziffer") protected Object gemeindekennziffer; @XmlElement(name = "Ortschaft") @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchemaType(name = "token") protected String ortschaft; @XmlElement(name = "Zustelladresse") protected PostAdresseTyp.Zustelladresse zustelladresse; /** * Gets the value of the staatscode property. * * @return * possible object is * {@link String } * */ public String getStaatscode() { return staatscode; } /** * Sets the value of the staatscode property. * * @param value * allowed object is * {@link String } * */ public void setStaatscode(String value) { this.staatscode = value; } /** * Gets the value of the postleitzahl property. * * @return * possible object is * {@link String } * */ public String getPostleitzahl() { return postleitzahl; } /** * Sets the value of the postleitzahl property. * * @param value * allowed object is * {@link String } * */ public void setPostleitzahl(String value) { this.postleitzahl = value; } /** * Gets the value of the gemeinde property. * * @return * possible object is * {@link String } * */ public String getGemeinde() { return gemeinde; } /** * Sets the value of the gemeinde property. * * @param value * allowed object is * {@link String } * */ public void setGemeinde(String value) { this.gemeinde = value; } /** * Gets the value of the gemeindekennziffer property. * * @return * possible object is * {@link Object } * */ public Object getGemeindekennziffer() { return gemeindekennziffer; } /** * Sets the value of the gemeindekennziffer property. * * @param value * allowed object is * {@link Object } * */ public void setGemeindekennziffer(Object value) { this.gemeindekennziffer = value; } /** * Gets the value of the ortschaft property. * * @return * possible object is * {@link String } * */ public String getOrtschaft() { return ortschaft; } /** * Sets the value of the ortschaft property. * * @param value * allowed object is * {@link String } * */ public void setOrtschaft(String value) { this.ortschaft = value; } /** * Gets the value of the zustelladresse property. * * @return * possible object is * {@link PostAdresseTyp.Zustelladresse } * */ public PostAdresseTyp.Zustelladresse getZustelladresse() { return zustelladresse; } /** * Sets the value of the zustelladresse property. * * @param value * allowed object is * {@link PostAdresseTyp.Zustelladresse } * */ public void setZustelladresse(PostAdresseTyp.Zustelladresse value) { this.zustelladresse = 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="Strassenname" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
     *         <element name="Orientierungsnummer" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
     *         <element name="Gebaeude" type="{http://www.w3.org/2001/XMLSchema}token" minOccurs="0"/>
     *         <element name="Nutzungseinheit" type="{http://www.w3.org/2001/XMLSchema}token" minOccurs="0"/>
     *       </sequence>
     *     </restriction>
     *   </complexContent>
     * </complexType>
     * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "strassenname", "orientierungsnummer", "gebaeude", "nutzungseinheit" }) public static class Zustelladresse { @XmlElement(name = "Strassenname") protected String strassenname; @XmlElement(name = "Orientierungsnummer") protected String orientierungsnummer; @XmlElement(name = "Gebaeude") @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchemaType(name = "token") protected String gebaeude; @XmlElement(name = "Nutzungseinheit") @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchemaType(name = "token") protected String nutzungseinheit; /** * Gets the value of the strassenname property. * * @return * possible object is * {@link String } * */ public String getStrassenname() { return strassenname; } /** * Sets the value of the strassenname property. * * @param value * allowed object is * {@link String } * */ public void setStrassenname(String value) { this.strassenname = value; } /** * Gets the value of the orientierungsnummer property. * * @return * possible object is * {@link String } * */ public String getOrientierungsnummer() { return orientierungsnummer; } /** * Sets the value of the orientierungsnummer property. * * @param value * allowed object is * {@link String } * */ public void setOrientierungsnummer(String value) { this.orientierungsnummer = value; } /** * Gets the value of the gebaeude property. * * @return * possible object is * {@link String } * */ public String getGebaeude() { return gebaeude; } /** * Sets the value of the gebaeude property. * * @param value * allowed object is * {@link String } * */ public void setGebaeude(String value) { this.gebaeude = value; } /** * Gets the value of the nutzungseinheit property. * * @return * possible object is * {@link String } * */ public String getNutzungseinheit() { return nutzungseinheit; } /** * Sets the value of the nutzungseinheit property. * * @param value * allowed object is * {@link String } * */ public void setNutzungseinheit(String value) { this.nutzungseinheit = value; } } }