package at.gv.util.xsd.ersb.pd; 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://reference.e-government.gv.at/namespace/persondata/de/20040201#}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="AdressRegisterEintrag" minOccurs="0">
 *                     <complexType>
 *                       <complexContent>
 *                         <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *                           <sequence>
 *                             <element name="Adresscode" type="{http://reference.e-government.gv.at/namespace/persondata/de/20040201#}string7"/>
 *                             <element name="Subcode" type="{http://reference.e-government.gv.at/namespace/persondata/de/20040201#}string3" minOccurs="0"/>
 *                             <element name="Objektnummer" type="{http://reference.e-government.gv.at/namespace/persondata/de/20040201#}string7" minOccurs="0"/>
 *                           </sequence>
 *                         </restriction>
 *                       </complexContent>
 *                     </complexType>
 *                   </element>
 *                 </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="AdressRegisterEintrag" minOccurs="0">
     *           <complexType>
     *             <complexContent>
     *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
     *                 <sequence>
     *                   <element name="Adresscode" type="{http://reference.e-government.gv.at/namespace/persondata/de/20040201#}string7"/>
     *                   <element name="Subcode" type="{http://reference.e-government.gv.at/namespace/persondata/de/20040201#}string3" minOccurs="0"/>
     *                   <element name="Objektnummer" type="{http://reference.e-government.gv.at/namespace/persondata/de/20040201#}string7" minOccurs="0"/>
     *                 </sequence>
     *               </restriction>
     *             </complexContent>
     *           </complexType>
     *         </element>
     *       </sequence>
     *     </restriction>
     *   </complexContent>
     * </complexType>
     * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "strassenname", "orientierungsnummer", "adressRegisterEintrag" }) public static class Zustelladresse { @XmlElement(name = "Strassenname") protected String strassenname; @XmlElement(name = "Orientierungsnummer") protected String orientierungsnummer; @XmlElement(name = "AdressRegisterEintrag") protected PostAdresseTyp.Zustelladresse.AdressRegisterEintrag adressRegisterEintrag; /** * 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 adressRegisterEintrag property. * * @return * possible object is * {@link PostAdresseTyp.Zustelladresse.AdressRegisterEintrag } * */ public PostAdresseTyp.Zustelladresse.AdressRegisterEintrag getAdressRegisterEintrag() { return adressRegisterEintrag; } /** * Sets the value of the adressRegisterEintrag property. * * @param value * allowed object is * {@link PostAdresseTyp.Zustelladresse.AdressRegisterEintrag } * */ public void setAdressRegisterEintrag(PostAdresseTyp.Zustelladresse.AdressRegisterEintrag value) { this.adressRegisterEintrag = 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="Adresscode" type="{http://reference.e-government.gv.at/namespace/persondata/de/20040201#}string7"/>
         *         <element name="Subcode" type="{http://reference.e-government.gv.at/namespace/persondata/de/20040201#}string3" minOccurs="0"/>
         *         <element name="Objektnummer" type="{http://reference.e-government.gv.at/namespace/persondata/de/20040201#}string7" minOccurs="0"/>
         *       </sequence>
         *     </restriction>
         *   </complexContent>
         * </complexType>
         * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "adresscode", "subcode", "objektnummer" }) public static class AdressRegisterEintrag { @XmlElement(name = "Adresscode", required = true) protected String adresscode; @XmlElement(name = "Subcode") protected String subcode; @XmlElement(name = "Objektnummer") protected String objektnummer; /** * Gets the value of the adresscode property. * * @return * possible object is * {@link String } * */ public String getAdresscode() { return adresscode; } /** * Sets the value of the adresscode property. * * @param value * allowed object is * {@link String } * */ public void setAdresscode(String value) { this.adresscode = 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 objektnummer property. * * @return * possible object is * {@link String } * */ public String getObjektnummer() { return objektnummer; } /** * Sets the value of the objektnummer property. * * @param value * allowed object is * {@link String } * */ public void setObjektnummer(String value) { this.objektnummer = value; } } } }