summaryrefslogtreecommitdiff
path: root/src/main/java/at/gv/util/xsd/ur/pd/PostAdresseTyp.java
diff options
context:
space:
mode:
authorThomas Lenz <thomas.lenz@egiz.gv.at>2014-03-25 12:11:34 +0100
committerThomas Lenz <thomas.lenz@egiz.gv.at>2014-03-25 12:11:34 +0100
commit107930978eefc7234e99bbccd483f4da3a690c0d (patch)
treefeef5d6db47dada6cb9df3333bebfa8fdb13db29 /src/main/java/at/gv/util/xsd/ur/pd/PostAdresseTyp.java
parent655d20aa34b819720b20165dc6aeea032df224cc (diff)
downloadegovutils-107930978eefc7234e99bbccd483f4da3a690c0d.tar.gz
egovutils-107930978eefc7234e99bbccd483f4da3a690c0d.tar.bz2
egovutils-107930978eefc7234e99bbccd483f4da3a690c0d.zip
add UR Client version 5
remove UR Client version 1 change egovutils version to 1.0.5
Diffstat (limited to 'src/main/java/at/gv/util/xsd/ur/pd/PostAdresseTyp.java')
-rw-r--r--src/main/java/at/gv/util/xsd/ur/pd/PostAdresseTyp.java355
1 files changed, 0 insertions, 355 deletions
diff --git a/src/main/java/at/gv/util/xsd/ur/pd/PostAdresseTyp.java b/src/main/java/at/gv/util/xsd/ur/pd/PostAdresseTyp.java
deleted file mode 100644
index 5335fc2..0000000
--- a/src/main/java/at/gv/util/xsd/ur/pd/PostAdresseTyp.java
+++ /dev/null
@@ -1,355 +0,0 @@
-
-package at.gv.util.xsd.ur.pd;
-
-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.XmlSchemaType;
-import javax.xml.bind.annotation.XmlType;
-import javax.xml.bind.annotation.adapters.CollapsedStringAdapter;
-import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
-
-
-/**
- * entspricht PostalAddressType
- *
- * <p>Java class for PostAdresseTyp complex type.
- *
- * <p>The following schema fragment specifies the expected content contained within this class.
- *
- * <pre>
- * &lt;complexType name="PostAdresseTyp">
- * &lt;complexContent>
- * &lt;extension base="{http://reference.e-government.gv.at/namespace/persondata/de/20040201#}AbstractAddressType">
- * &lt;sequence>
- * &lt;element name="Staatscode" minOccurs="0">
- * &lt;simpleType>
- * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
- * &lt;pattern value="[A-Z]{3}"/>
- * &lt;/restriction>
- * &lt;/simpleType>
- * &lt;/element>
- * &lt;element name="Postleitzahl" type="{http://www.w3.org/2001/XMLSchema}token" minOccurs="0"/>
- * &lt;element name="Gemeinde" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- * &lt;element name="Gemeindekennziffer" type="{http://www.w3.org/2001/XMLSchema}anyType" minOccurs="0"/>
- * &lt;element name="Ortschaft" type="{http://www.w3.org/2001/XMLSchema}token" minOccurs="0"/>
- * &lt;element name="Zustelladresse" minOccurs="0">
- * &lt;complexType>
- * &lt;complexContent>
- * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- * &lt;sequence>
- * &lt;element name="Strassenname" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- * &lt;element name="Orientierungsnummer" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- * &lt;/sequence>
- * &lt;/restriction>
- * &lt;/complexContent>
- * &lt;/complexType>
- * &lt;/element>
- * &lt;/sequence>
- * &lt;attribute name="type" default="undefiniert">
- * &lt;simpleType>
- * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
- * &lt;enumeration value="Postfachadresse"/>
- * &lt;enumeration value="Anschrift"/>
- * &lt;enumeration value="MilitaerischeAdresse"/>
- * &lt;enumeration value="undefiniert"/>
- * &lt;/restriction>
- * &lt;/simpleType>
- * &lt;/attribute>
- * &lt;anyAttribute namespace='##other'/>
- * &lt;/extension>
- * &lt;/complexContent>
- * &lt;/complexType>
- * </pre>
- *
- *
- */
-@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;
- @XmlAttribute(name = "type")
- protected String type;
-
- /**
- * 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;
- }
-
- /**
- * Gets the value of the type property.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getType() {
- if (type == null) {
- return "undefiniert";
- } 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;
- }
-
-
- /**
- * <p>Java class for anonymous complex type.
- *
- * <p>The following schema fragment specifies the expected content contained within this class.
- *
- * <pre>
- * &lt;complexType>
- * &lt;complexContent>
- * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- * &lt;sequence>
- * &lt;element name="Strassenname" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- * &lt;element name="Orientierungsnummer" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- * &lt;/sequence>
- * &lt;/restriction>
- * &lt;/complexContent>
- * &lt;/complexType>
- * </pre>
- *
- *
- */
- @XmlAccessorType(XmlAccessType.FIELD)
- @XmlType(name = "", propOrder = {
- "strassenname",
- "orientierungsnummer"
- })
- public static class Zustelladresse {
-
- @XmlElement(name = "Strassenname")
- protected String strassenname;
- @XmlElement(name = "Orientierungsnummer")
- protected String orientierungsnummer;
-
- /**
- * 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;
- }
-
- }
-
-}