summaryrefslogtreecommitdiff
path: root/src/main/java/at/gv/util/xsd/ersb/basicTypes/OenaceType.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/at/gv/util/xsd/ersb/basicTypes/OenaceType.java')
-rw-r--r--src/main/java/at/gv/util/xsd/ersb/basicTypes/OenaceType.java81
1 files changed, 81 insertions, 0 deletions
diff --git a/src/main/java/at/gv/util/xsd/ersb/basicTypes/OenaceType.java b/src/main/java/at/gv/util/xsd/ersb/basicTypes/OenaceType.java
new file mode 100644
index 0000000..1b73df6
--- /dev/null
+++ b/src/main/java/at/gv/util/xsd/ersb/basicTypes/OenaceType.java
@@ -0,0 +1,81 @@
+
+package at.gv.util.xsd.ersb.basicTypes;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.XmlValue;
+
+
+/**
+ * <p>Java class for OenaceType complex type.
+ *
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ *
+ * <pre>
+ * &lt;complexType name="OenaceType">
+ * &lt;simpleContent>
+ * &lt;extension base="&lt;http://statistik.at/namespace/ur/simpleTypes/2#>OenaceCodeTyp">
+ * &lt;attribute name="jahr" use="required" type="{http://statistik.at/namespace/ur/simpleTypes/2#}OenaceJahrTyp" />
+ * &lt;/extension>
+ * &lt;/simpleContent>
+ * &lt;/complexType>
+ * </pre>
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "OenaceType", propOrder = {
+ "value"
+})
+public class OenaceType {
+
+ @XmlValue
+ protected String value;
+ @XmlAttribute(name = "jahr", required = true)
+ protected int jahr;
+
+ /**
+ *
+ * Ö\u0096NACE - Branchenkennzahl
+ *
+ *
+ * @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 jahr property.
+ *
+ */
+ public int getJahr() {
+ return jahr;
+ }
+
+ /**
+ * Sets the value of the jahr property.
+ *
+ */
+ public void setJahr(int value) {
+ this.jahr = value;
+ }
+
+}