summaryrefslogtreecommitdiff
path: root/src/main/java/at/gv/util/xsd/ur_V2/simpletypes
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/at/gv/util/xsd/ur_V2/simpletypes')
-rw-r--r--src/main/java/at/gv/util/xsd/ur_V2/simpletypes/AdressTyp.java38
-rw-r--r--src/main/java/at/gv/util/xsd/ur_V2/simpletypes/ErgebnisVollzugStatusTyp.java38
-rw-r--r--src/main/java/at/gv/util/xsd/ur_V2/simpletypes/EvbStatusTyp.java40
-rw-r--r--src/main/java/at/gv/util/xsd/ur_V2/simpletypes/ObjectFactory.java32
-rw-r--r--src/main/java/at/gv/util/xsd/ur_V2/simpletypes/OenaceArtTyp.java38
-rw-r--r--src/main/java/at/gv/util/xsd/ur_V2/simpletypes/VollzugStatusTyp.java40
6 files changed, 226 insertions, 0 deletions
diff --git a/src/main/java/at/gv/util/xsd/ur_V2/simpletypes/AdressTyp.java b/src/main/java/at/gv/util/xsd/ur_V2/simpletypes/AdressTyp.java
new file mode 100644
index 0000000..ebb19c5
--- /dev/null
+++ b/src/main/java/at/gv/util/xsd/ur_V2/simpletypes/AdressTyp.java
@@ -0,0 +1,38 @@
+
+package at.gv.util.xsd.ur_V2.simpletypes;
+
+import javax.xml.bind.annotation.XmlEnum;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Java class for AdressTyp.
+ *
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ * <p>
+ * <pre>
+ * &lt;simpleType name="AdressTyp">
+ * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ * &lt;enumeration value="SITZ"/>
+ * &lt;enumeration value="ZUSTELLADRESSE"/>
+ * &lt;/restriction>
+ * &lt;/simpleType>
+ * </pre>
+ *
+ */
+@XmlType(name = "AdressTyp", namespace = "http://statistik.at/namespace/ur/simpleTypes/2#")
+@XmlEnum
+public enum AdressTyp {
+
+ SITZ,
+ ZUSTELLADRESSE;
+
+ public String value() {
+ return name();
+ }
+
+ public static AdressTyp fromValue(String v) {
+ return valueOf(v);
+ }
+
+}
diff --git a/src/main/java/at/gv/util/xsd/ur_V2/simpletypes/ErgebnisVollzugStatusTyp.java b/src/main/java/at/gv/util/xsd/ur_V2/simpletypes/ErgebnisVollzugStatusTyp.java
new file mode 100644
index 0000000..215fa86
--- /dev/null
+++ b/src/main/java/at/gv/util/xsd/ur_V2/simpletypes/ErgebnisVollzugStatusTyp.java
@@ -0,0 +1,38 @@
+
+package at.gv.util.xsd.ur_V2.simpletypes;
+
+import javax.xml.bind.annotation.XmlEnum;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Java class for ErgebnisVollzugStatusTyp.
+ *
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ * <p>
+ * <pre>
+ * &lt;simpleType name="ErgebnisVollzugStatusTyp">
+ * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ * &lt;enumeration value="V"/>
+ * &lt;enumeration value="AZV"/>
+ * &lt;/restriction>
+ * &lt;/simpleType>
+ * </pre>
+ *
+ */
+@XmlType(name = "ErgebnisVollzugStatusTyp", namespace = "http://statistik.at/namespace/ur/simpleTypes/2#")
+@XmlEnum
+public enum ErgebnisVollzugStatusTyp {
+
+ V,
+ AZV;
+
+ public String value() {
+ return name();
+ }
+
+ public static ErgebnisVollzugStatusTyp fromValue(String v) {
+ return valueOf(v);
+ }
+
+}
diff --git a/src/main/java/at/gv/util/xsd/ur_V2/simpletypes/EvbStatusTyp.java b/src/main/java/at/gv/util/xsd/ur_V2/simpletypes/EvbStatusTyp.java
new file mode 100644
index 0000000..5d0fb74
--- /dev/null
+++ b/src/main/java/at/gv/util/xsd/ur_V2/simpletypes/EvbStatusTyp.java
@@ -0,0 +1,40 @@
+
+package at.gv.util.xsd.ur_V2.simpletypes;
+
+import javax.xml.bind.annotation.XmlEnum;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Java class for EvbStatusTyp.
+ *
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ * <p>
+ * <pre>
+ * &lt;simpleType name="EvbStatusTyp">
+ * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ * &lt;enumeration value="J"/>
+ * &lt;enumeration value="N"/>
+ * &lt;enumeration value="U"/>
+ * &lt;/restriction>
+ * &lt;/simpleType>
+ * </pre>
+ *
+ */
+@XmlType(name = "EvbStatusTyp", namespace = "http://statistik.at/namespace/ur/simpleTypes/2#")
+@XmlEnum
+public enum EvbStatusTyp {
+
+ J,
+ N,
+ U;
+
+ public String value() {
+ return name();
+ }
+
+ public static EvbStatusTyp fromValue(String v) {
+ return valueOf(v);
+ }
+
+}
diff --git a/src/main/java/at/gv/util/xsd/ur_V2/simpletypes/ObjectFactory.java b/src/main/java/at/gv/util/xsd/ur_V2/simpletypes/ObjectFactory.java
new file mode 100644
index 0000000..3565bb8
--- /dev/null
+++ b/src/main/java/at/gv/util/xsd/ur_V2/simpletypes/ObjectFactory.java
@@ -0,0 +1,32 @@
+
+package at.gv.util.xsd.ur_V2.simpletypes;
+
+import javax.xml.bind.annotation.XmlRegistry;
+
+
+/**
+ * This object contains factory methods for each
+ * Java content interface and Java element interface
+ * generated in the at.gv.util.xsd.ur_V2.simpletypes package.
+ * <p>An ObjectFactory allows you to programatically
+ * construct new instances of the Java representation
+ * for XML content. The Java representation of XML
+ * content can consist of schema derived interfaces
+ * and classes representing the binding of schema
+ * type definitions, element declarations and model
+ * groups. Factory methods for each of these are
+ * provided in this class.
+ *
+ */
+@XmlRegistry
+public class ObjectFactory {
+
+
+ /**
+ * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: at.gv.util.xsd.ur_V2.simpletypes
+ *
+ */
+ public ObjectFactory() {
+ }
+
+}
diff --git a/src/main/java/at/gv/util/xsd/ur_V2/simpletypes/OenaceArtTyp.java b/src/main/java/at/gv/util/xsd/ur_V2/simpletypes/OenaceArtTyp.java
new file mode 100644
index 0000000..5d445f1
--- /dev/null
+++ b/src/main/java/at/gv/util/xsd/ur_V2/simpletypes/OenaceArtTyp.java
@@ -0,0 +1,38 @@
+
+package at.gv.util.xsd.ur_V2.simpletypes;
+
+import javax.xml.bind.annotation.XmlEnum;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Java class for OenaceArtTyp.
+ *
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ * <p>
+ * <pre>
+ * &lt;simpleType name="OenaceArtTyp">
+ * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ * &lt;enumeration value="H"/>
+ * &lt;enumeration value="N"/>
+ * &lt;/restriction>
+ * &lt;/simpleType>
+ * </pre>
+ *
+ */
+@XmlType(name = "OenaceArtTyp", namespace = "http://statistik.at/namespace/ur/simpleTypes/2#")
+@XmlEnum
+public enum OenaceArtTyp {
+
+ H,
+ N;
+
+ public String value() {
+ return name();
+ }
+
+ public static OenaceArtTyp fromValue(String v) {
+ return valueOf(v);
+ }
+
+}
diff --git a/src/main/java/at/gv/util/xsd/ur_V2/simpletypes/VollzugStatusTyp.java b/src/main/java/at/gv/util/xsd/ur_V2/simpletypes/VollzugStatusTyp.java
new file mode 100644
index 0000000..3150812
--- /dev/null
+++ b/src/main/java/at/gv/util/xsd/ur_V2/simpletypes/VollzugStatusTyp.java
@@ -0,0 +1,40 @@
+
+package at.gv.util.xsd.ur_V2.simpletypes;
+
+import javax.xml.bind.annotation.XmlEnum;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Java class for VollzugStatusTyp.
+ *
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ * <p>
+ * <pre>
+ * &lt;simpleType name="VollzugStatusTyp">
+ * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
+ * &lt;enumeration value="A"/>
+ * &lt;enumeration value="V"/>
+ * &lt;enumeration value="Z"/>
+ * &lt;/restriction>
+ * &lt;/simpleType>
+ * </pre>
+ *
+ */
+@XmlType(name = "VollzugStatusTyp", namespace = "http://statistik.at/namespace/ur/simpleTypes/2#")
+@XmlEnum
+public enum VollzugStatusTyp {
+
+ A,
+ V,
+ Z;
+
+ public String value() {
+ return name();
+ }
+
+ public static VollzugStatusTyp fromValue(String v) {
+ return valueOf(v);
+ }
+
+}