summaryrefslogtreecommitdiff
path: root/src/main/java/at/gv/util/xsd/ur/pd/PersonenNameTyp.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/PersonenNameTyp.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/PersonenNameTyp.java')
-rw-r--r--src/main/java/at/gv/util/xsd/ur/pd/PersonenNameTyp.java408
1 files changed, 0 insertions, 408 deletions
diff --git a/src/main/java/at/gv/util/xsd/ur/pd/PersonenNameTyp.java b/src/main/java/at/gv/util/xsd/ur/pd/PersonenNameTyp.java
deleted file mode 100644
index 8c640e8..0000000
--- a/src/main/java/at/gv/util/xsd/ur/pd/PersonenNameTyp.java
+++ /dev/null
@@ -1,408 +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.XmlType;
-import javax.xml.bind.annotation.XmlValue;
-
-
-/**
- * entspricht NameType
- *
- * <p>Java class for PersonenNameTyp complex type.
- *
- * <p>The following schema fragment specifies the expected content contained within this class.
- *
- * <pre>
- * &lt;complexType name="PersonenNameTyp">
- * &lt;complexContent>
- * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- * &lt;sequence>
- * &lt;element name="Vorname" type="{http://www.w3.org/2001/XMLSchema}string"/>
- * &lt;element name="Familienname">
- * &lt;complexType>
- * &lt;simpleContent>
- * &lt;extension base="&lt;http://www.w3.org/2001/XMLSchema>string">
- * &lt;attribute name="primaer" default="undefiniert">
- * &lt;simpleType>
- * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
- * &lt;enumeration value="wahr"/>
- * &lt;enumeration value="falsch"/>
- * &lt;enumeration value="undefiniert"/>
- * &lt;/restriction>
- * &lt;/simpleType>
- * &lt;/attribute>
- * &lt;attribute name="prefix" type="{http://www.w3.org/2001/XMLSchema}string" />
- * &lt;/extension>
- * &lt;/simpleContent>
- * &lt;/complexType>
- * &lt;/element>
- * &lt;element name="Affix" minOccurs="0">
- * &lt;complexType>
- * &lt;simpleContent>
- * &lt;extension base="&lt;http://www.w3.org/2001/XMLSchema>string">
- * &lt;attribute name="typ">
- * &lt;simpleType>
- * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
- * &lt;enumeration value="akademischerGrad"/>
- * &lt;enumeration value="Adelstitel"/>
- * &lt;enumeration value="FamiliennamenAffix"/>
- * &lt;enumeration value="Anrede"/>
- * &lt;enumeration value="Generation"/>
- * &lt;enumeration value="Qualifikation"/>
- * &lt;/restriction>
- * &lt;/simpleType>
- * &lt;/attribute>
- * &lt;attribute name="position">
- * &lt;simpleType>
- * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
- * &lt;enumeration value="prefix"/>
- * &lt;enumeration value="suffix"/>
- * &lt;/restriction>
- * &lt;/simpleType>
- * &lt;/attribute>
- * &lt;/extension>
- * &lt;/simpleContent>
- * &lt;/complexType>
- * &lt;/element>
- * &lt;/sequence>
- * &lt;/restriction>
- * &lt;/complexContent>
- * &lt;/complexType>
- * </pre>
- *
- *
- */
-@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "PersonenNameTyp", propOrder = {
- "vorname",
- "familienname",
- "affix"
-})
-public class PersonenNameTyp {
-
- @XmlElement(name = "Vorname", required = true)
- protected String vorname;
- @XmlElement(name = "Familienname", required = true)
- protected PersonenNameTyp.Familienname familienname;
- @XmlElement(name = "Affix")
- protected PersonenNameTyp.Affix affix;
-
- /**
- * Gets the value of the vorname property.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getVorname() {
- return vorname;
- }
-
- /**
- * Sets the value of the vorname property.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setVorname(String value) {
- this.vorname = value;
- }
-
- /**
- * Gets the value of the familienname property.
- *
- * @return
- * possible object is
- * {@link PersonenNameTyp.Familienname }
- *
- */
- public PersonenNameTyp.Familienname getFamilienname() {
- return familienname;
- }
-
- /**
- * Sets the value of the familienname property.
- *
- * @param value
- * allowed object is
- * {@link PersonenNameTyp.Familienname }
- *
- */
- public void setFamilienname(PersonenNameTyp.Familienname value) {
- this.familienname = value;
- }
-
- /**
- * Gets the value of the affix property.
- *
- * @return
- * possible object is
- * {@link PersonenNameTyp.Affix }
- *
- */
- public PersonenNameTyp.Affix getAffix() {
- return affix;
- }
-
- /**
- * Sets the value of the affix property.
- *
- * @param value
- * allowed object is
- * {@link PersonenNameTyp.Affix }
- *
- */
- public void setAffix(PersonenNameTyp.Affix value) {
- this.affix = 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;simpleContent>
- * &lt;extension base="&lt;http://www.w3.org/2001/XMLSchema>string">
- * &lt;attribute name="typ">
- * &lt;simpleType>
- * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
- * &lt;enumeration value="akademischerGrad"/>
- * &lt;enumeration value="Adelstitel"/>
- * &lt;enumeration value="FamiliennamenAffix"/>
- * &lt;enumeration value="Anrede"/>
- * &lt;enumeration value="Generation"/>
- * &lt;enumeration value="Qualifikation"/>
- * &lt;/restriction>
- * &lt;/simpleType>
- * &lt;/attribute>
- * &lt;attribute name="position">
- * &lt;simpleType>
- * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
- * &lt;enumeration value="prefix"/>
- * &lt;enumeration value="suffix"/>
- * &lt;/restriction>
- * &lt;/simpleType>
- * &lt;/attribute>
- * &lt;/extension>
- * &lt;/simpleContent>
- * &lt;/complexType>
- * </pre>
- *
- *
- */
- @XmlAccessorType(XmlAccessType.FIELD)
- @XmlType(name = "", propOrder = {
- "value"
- })
- public static class Affix {
-
- @XmlValue
- protected String value;
- @XmlAttribute(name = "typ")
- protected String typ;
- @XmlAttribute(name = "position")
- protected String position;
-
- /**
- * Gets the value of the value property.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getValue() {
- return value;
- }
-
- /**
- * Sets the value of the value property.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setValue(String value) {
- this.value = value;
- }
-
- /**
- * Gets the value of the typ property.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getTyp() {
- return typ;
- }
-
- /**
- * Sets the value of the typ property.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setTyp(String value) {
- this.typ = value;
- }
-
- /**
- * Gets the value of the position property.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getPosition() {
- return position;
- }
-
- /**
- * Sets the value of the position property.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setPosition(String value) {
- this.position = 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;simpleContent>
- * &lt;extension base="&lt;http://www.w3.org/2001/XMLSchema>string">
- * &lt;attribute name="primaer" default="undefiniert">
- * &lt;simpleType>
- * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
- * &lt;enumeration value="wahr"/>
- * &lt;enumeration value="falsch"/>
- * &lt;enumeration value="undefiniert"/>
- * &lt;/restriction>
- * &lt;/simpleType>
- * &lt;/attribute>
- * &lt;attribute name="prefix" type="{http://www.w3.org/2001/XMLSchema}string" />
- * &lt;/extension>
- * &lt;/simpleContent>
- * &lt;/complexType>
- * </pre>
- *
- *
- */
- @XmlAccessorType(XmlAccessType.FIELD)
- @XmlType(name = "", propOrder = {
- "value"
- })
- public static class Familienname {
-
- @XmlValue
- protected String value;
- @XmlAttribute(name = "primaer")
- protected String primaer;
- @XmlAttribute(name = "prefix")
- protected String prefix;
-
- /**
- * Gets the value of the value property.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getValue() {
- return value;
- }
-
- /**
- * Sets the value of the value property.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setValue(String value) {
- this.value = value;
- }
-
- /**
- * Gets the value of the primaer property.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getPrimaer() {
- if (primaer == null) {
- return "undefiniert";
- } else {
- return primaer;
- }
- }
-
- /**
- * Sets the value of the primaer property.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setPrimaer(String value) {
- this.primaer = value;
- }
-
- /**
- * Gets the value of the prefix property.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getPrefix() {
- return prefix;
- }
-
- /**
- * Sets the value of the prefix property.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setPrefix(String value) {
- this.prefix = value;
- }
-
- }
-
-}