summaryrefslogtreecommitdiff
path: root/src/main/java/at/gv/util/xsd/ur/search/SuchePersonendaten.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/at/gv/util/xsd/ur/search/SuchePersonendaten.java')
-rw-r--r--src/main/java/at/gv/util/xsd/ur/search/SuchePersonendaten.java279
1 files changed, 0 insertions, 279 deletions
diff --git a/src/main/java/at/gv/util/xsd/ur/search/SuchePersonendaten.java b/src/main/java/at/gv/util/xsd/ur/search/SuchePersonendaten.java
deleted file mode 100644
index 19fd338..0000000
--- a/src/main/java/at/gv/util/xsd/ur/search/SuchePersonendaten.java
+++ /dev/null
@@ -1,279 +0,0 @@
-
-package at.gv.util.xsd.ur.search;
-
-import javax.xml.bind.annotation.XmlAccessType;
-import javax.xml.bind.annotation.XmlAccessorType;
-import javax.xml.bind.annotation.XmlSchemaType;
-import javax.xml.bind.annotation.XmlType;
-import javax.xml.datatype.XMLGregorianCalendar;
-
-
-/**
- * <p>Java class for SuchePersonendaten complex type.
- *
- * <p>The following schema fragment specifies the expected content contained within this class.
- *
- * <pre>
- * &lt;complexType name="SuchePersonendaten">
- * &lt;complexContent>
- * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- * &lt;sequence>
- * &lt;element name="nachname" type="{http://statistik.at/namespace/ur/simpleTypes/1#}NachnameTyp" minOccurs="0"/>
- * &lt;element name="vorname" type="{http://statistik.at/namespace/ur/simpleTypes/1#}VornameTyp" minOccurs="0"/>
- * &lt;element name="gebDatum" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
- * &lt;element name="strasse" type="{http://statistik.at/namespace/ur/simpleTypes/1#}StrasseTyp" minOccurs="0"/>
- * &lt;element name="hNr" type="{http://statistik.at/namespace/ur/simpleTypes/1#}HNrTyp" minOccurs="0"/>
- * &lt;element name="ort" type="{http://statistik.at/namespace/ur/simpleTypes/1#}OrtTyp" minOccurs="0"/>
- * &lt;element name="gemnr" type="{http://statistik.at/namespace/ur/simpleTypes/1#}GemnrTyp" minOccurs="0"/>
- * &lt;element name="plz" type="{http://statistik.at/namespace/ur/simpleTypes/1#}PlzTyp" minOccurs="0"/>
- * &lt;element name="land" type="{http://statistik.at/namespace/ur/simpleTypes/1#}LandTyp" minOccurs="0"/>
- * &lt;/sequence>
- * &lt;/restriction>
- * &lt;/complexContent>
- * &lt;/complexType>
- * </pre>
- *
- *
- */
-@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "SuchePersonendaten", propOrder = {
- "nachname",
- "vorname",
- "gebDatum",
- "strasse",
- "hNr",
- "ort",
- "gemnr",
- "plz",
- "land"
-})
-public class SuchePersonendaten {
-
- protected String nachname;
- protected String vorname;
- @XmlSchemaType(name = "date")
- protected XMLGregorianCalendar gebDatum;
- protected String strasse;
- protected String hNr;
- protected String ort;
- protected Integer gemnr;
- protected String plz;
- protected String land;
-
- /**
- * Gets the value of the nachname property.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getNachname() {
- return nachname;
- }
-
- /**
- * Sets the value of the nachname property.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setNachname(String value) {
- this.nachname = value;
- }
-
- /**
- * 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 gebDatum property.
- *
- * @return
- * possible object is
- * {@link XMLGregorianCalendar }
- *
- */
- public XMLGregorianCalendar getGebDatum() {
- return gebDatum;
- }
-
- /**
- * Sets the value of the gebDatum property.
- *
- * @param value
- * allowed object is
- * {@link XMLGregorianCalendar }
- *
- */
- public void setGebDatum(XMLGregorianCalendar value) {
- this.gebDatum = value;
- }
-
- /**
- * Gets the value of the strasse property.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getStrasse() {
- return strasse;
- }
-
- /**
- * Sets the value of the strasse property.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setStrasse(String value) {
- this.strasse = value;
- }
-
- /**
- * Gets the value of the hNr property.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getHNr() {
- return hNr;
- }
-
- /**
- * Sets the value of the hNr property.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setHNr(String value) {
- this.hNr = value;
- }
-
- /**
- * Gets the value of the ort property.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getOrt() {
- return ort;
- }
-
- /**
- * Sets the value of the ort property.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setOrt(String value) {
- this.ort = value;
- }
-
- /**
- * Gets the value of the gemnr property.
- *
- * @return
- * possible object is
- * {@link Integer }
- *
- */
- public Integer getGemnr() {
- return gemnr;
- }
-
- /**
- * Sets the value of the gemnr property.
- *
- * @param value
- * allowed object is
- * {@link Integer }
- *
- */
- public void setGemnr(Integer value) {
- this.gemnr = value;
- }
-
- /**
- * Gets the value of the plz property.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getPlz() {
- return plz;
- }
-
- /**
- * Sets the value of the plz property.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setPlz(String value) {
- this.plz = value;
- }
-
- /**
- * Gets the value of the land property.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getLand() {
- return land;
- }
-
- /**
- * Sets the value of the land property.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setLand(String value) {
- this.land = value;
- }
-
-}