summaryrefslogtreecommitdiff
path: root/src/main/java/at/gv/util/xsd/ur/search/Funktion.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/at/gv/util/xsd/ur/search/Funktion.java')
-rw-r--r--src/main/java/at/gv/util/xsd/ur/search/Funktion.java268
1 files changed, 268 insertions, 0 deletions
diff --git a/src/main/java/at/gv/util/xsd/ur/search/Funktion.java b/src/main/java/at/gv/util/xsd/ur/search/Funktion.java
new file mode 100644
index 0000000..717b187
--- /dev/null
+++ b/src/main/java/at/gv/util/xsd/ur/search/Funktion.java
@@ -0,0 +1,268 @@
+
+package at.gv.util.xsd.ur.search;
+
+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.XmlValue;
+import javax.xml.datatype.XMLGregorianCalendar;
+
+
+/**
+ * <p>Java class for Funktion complex type.
+ *
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ *
+ * <pre>
+ * &lt;complexType name="Funktion">
+ * &lt;complexContent>
+ * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * &lt;sequence>
+ * &lt;element name="FktName" type="{http://statistik.at/namespace/ur/simpleTypes/1#}FunktionTyp"/>
+ * &lt;element name="Vertretungsbefugnis" type="{http://statistik.at/namespace/ur/simpleTypes/1#}VertretungsbefugnisTyp"/>
+ * &lt;element name="VertretungsbefugnisText" minOccurs="0">
+ * &lt;complexType>
+ * &lt;simpleContent>
+ * &lt;extension base="&lt;http://statistik.at/namespace/ur/simpleTypes/1#>VertretungsbefugnisTextTyp">
+ * &lt;attribute name="beginn" use="required" type="{http://www.w3.org/2001/XMLSchema}date" />
+ * &lt;/extension>
+ * &lt;/simpleContent>
+ * &lt;/complexType>
+ * &lt;/element>
+ * &lt;element name="Beginn" type="{http://statistik.at/namespace/ur/stammdaten/1#}QuellenType"/>
+ * &lt;element name="Ende" type="{http://statistik.at/namespace/ur/stammdaten/1#}QuellenType" minOccurs="0"/>
+ * &lt;/sequence>
+ * &lt;/restriction>
+ * &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "Funktion", propOrder = {
+ "fktName",
+ "vertretungsbefugnis",
+ "vertretungsbefugnisText",
+ "beginn",
+ "ende"
+})
+public class Funktion {
+
+ @XmlElement(name = "FktName", required = true)
+ protected String fktName;
+ @XmlElement(name = "Vertretungsbefugnis", required = true)
+ protected String vertretungsbefugnis;
+ @XmlElement(name = "VertretungsbefugnisText")
+ protected Funktion.VertretungsbefugnisText vertretungsbefugnisText;
+ @XmlElement(name = "Beginn", required = true)
+ protected QuellenType beginn;
+ @XmlElement(name = "Ende")
+ protected QuellenType ende;
+
+ /**
+ * Gets the value of the fktName property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getFktName() {
+ return fktName;
+ }
+
+ /**
+ * Sets the value of the fktName property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setFktName(String value) {
+ this.fktName = value;
+ }
+
+ /**
+ * Gets the value of the vertretungsbefugnis property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getVertretungsbefugnis() {
+ return vertretungsbefugnis;
+ }
+
+ /**
+ * Sets the value of the vertretungsbefugnis property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setVertretungsbefugnis(String value) {
+ this.vertretungsbefugnis = value;
+ }
+
+ /**
+ * Gets the value of the vertretungsbefugnisText property.
+ *
+ * @return
+ * possible object is
+ * {@link Funktion.VertretungsbefugnisText }
+ *
+ */
+ public Funktion.VertretungsbefugnisText getVertretungsbefugnisText() {
+ return vertretungsbefugnisText;
+ }
+
+ /**
+ * Sets the value of the vertretungsbefugnisText property.
+ *
+ * @param value
+ * allowed object is
+ * {@link Funktion.VertretungsbefugnisText }
+ *
+ */
+ public void setVertretungsbefugnisText(Funktion.VertretungsbefugnisText value) {
+ this.vertretungsbefugnisText = value;
+ }
+
+ /**
+ * Gets the value of the beginn property.
+ *
+ * @return
+ * possible object is
+ * {@link QuellenType }
+ *
+ */
+ public QuellenType getBeginn() {
+ return beginn;
+ }
+
+ /**
+ * Sets the value of the beginn property.
+ *
+ * @param value
+ * allowed object is
+ * {@link QuellenType }
+ *
+ */
+ public void setBeginn(QuellenType value) {
+ this.beginn = value;
+ }
+
+ /**
+ * Gets the value of the ende property.
+ *
+ * @return
+ * possible object is
+ * {@link QuellenType }
+ *
+ */
+ public QuellenType getEnde() {
+ return ende;
+ }
+
+ /**
+ * Sets the value of the ende property.
+ *
+ * @param value
+ * allowed object is
+ * {@link QuellenType }
+ *
+ */
+ public void setEnde(QuellenType value) {
+ this.ende = 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://statistik.at/namespace/ur/simpleTypes/1#>VertretungsbefugnisTextTyp">
+ * &lt;attribute name="beginn" use="required" type="{http://www.w3.org/2001/XMLSchema}date" />
+ * &lt;/extension>
+ * &lt;/simpleContent>
+ * &lt;/complexType>
+ * </pre>
+ *
+ *
+ */
+ @XmlAccessorType(XmlAccessType.FIELD)
+ @XmlType(name = "", propOrder = {
+ "value"
+ })
+ public static class VertretungsbefugnisText {
+
+ @XmlValue
+ protected String value;
+ @XmlAttribute(name = "beginn", required = true)
+ @XmlSchemaType(name = "date")
+ protected XMLGregorianCalendar beginn;
+
+ /**
+ *
+ * Beschreibung der Vertretungsbefugnis
+ *
+ *
+ * @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 beginn property.
+ *
+ * @return
+ * possible object is
+ * {@link XMLGregorianCalendar }
+ *
+ */
+ public XMLGregorianCalendar getBeginn() {
+ return beginn;
+ }
+
+ /**
+ * Sets the value of the beginn property.
+ *
+ * @param value
+ * allowed object is
+ * {@link XMLGregorianCalendar }
+ *
+ */
+ public void setBeginn(XMLGregorianCalendar value) {
+ this.beginn = value;
+ }
+
+ }
+
+}