From defceef8afef538555c13d33e344a89a828a3d97 Mon Sep 17 00:00:00 2001 From: Thomas Lenz Date: Fri, 20 Dec 2013 12:35:28 +0100 Subject: inital --- .../java/at/gv/util/xsd/ur/search/Funktion.java | 268 +++++++++++++++++++++ 1 file changed, 268 insertions(+) create mode 100644 src/main/java/at/gv/util/xsd/ur/search/Funktion.java (limited to 'src/main/java/at/gv/util/xsd/ur/search/Funktion.java') 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; + + +/** + *

Java class for Funktion complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="Funktion">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="FktName" type="{http://statistik.at/namespace/ur/simpleTypes/1#}FunktionTyp"/>
+ *         <element name="Vertretungsbefugnis" type="{http://statistik.at/namespace/ur/simpleTypes/1#}VertretungsbefugnisTyp"/>
+ *         <element name="VertretungsbefugnisText" minOccurs="0">
+ *           <complexType>
+ *             <simpleContent>
+ *               <extension base="<http://statistik.at/namespace/ur/simpleTypes/1#>VertretungsbefugnisTextTyp">
+ *                 <attribute name="beginn" use="required" type="{http://www.w3.org/2001/XMLSchema}date" />
+ *               </extension>
+ *             </simpleContent>
+ *           </complexType>
+ *         </element>
+ *         <element name="Beginn" type="{http://statistik.at/namespace/ur/stammdaten/1#}QuellenType"/>
+ *         <element name="Ende" type="{http://statistik.at/namespace/ur/stammdaten/1#}QuellenType" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@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; + } + + + /** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+     * <complexType>
+     *   <simpleContent>
+     *     <extension base="<http://statistik.at/namespace/ur/simpleTypes/1#>VertretungsbefugnisTextTyp">
+     *       <attribute name="beginn" use="required" type="{http://www.w3.org/2001/XMLSchema}date" />
+     *     </extension>
+     *   </simpleContent>
+     * </complexType>
+     * 
+ * + * + */ + @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; + } + + } + +} -- cgit v1.2.3