summaryrefslogtreecommitdiff
path: root/src/main/java/at/gv/util/xsd/ersb/VertretungErsb.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/at/gv/util/xsd/ersb/VertretungErsb.java')
-rw-r--r--src/main/java/at/gv/util/xsd/ersb/VertretungErsb.java61
1 files changed, 61 insertions, 0 deletions
diff --git a/src/main/java/at/gv/util/xsd/ersb/VertretungErsb.java b/src/main/java/at/gv/util/xsd/ersb/VertretungErsb.java
new file mode 100644
index 0000000..580d16b
--- /dev/null
+++ b/src/main/java/at/gv/util/xsd/ersb/VertretungErsb.java
@@ -0,0 +1,61 @@
+
+package at.gv.util.xsd.ersb;
+
+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 at.gv.util.xsd.ersb.basicTypes.Vertretung;
+
+
+/**
+ * <p>Java class for VertretungErsb complex type.
+ *
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ *
+ * <pre>
+ * &lt;complexType name="VertretungErsb">
+ * &lt;simpleContent>
+ * &lt;extension base="&lt;http://statistik.at/namespace/ur/stammdaten/2#>Vertretung">
+ * &lt;attGroup ref="{http://statistik.at/namespace/ersb/1#}ErsbAttributes"/>
+ * &lt;/extension>
+ * &lt;/simpleContent>
+ * &lt;/complexType>
+ * </pre>
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "VertretungErsb")
+public class VertretungErsb
+ extends Vertretung
+{
+
+ @XmlAttribute(name = "aktion", namespace = "http://statistik.at/namespace/ersb/1#")
+ protected String aktion;
+
+ /**
+ * Gets the value of the aktion property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getAktion() {
+ return aktion;
+ }
+
+ /**
+ * Sets the value of the aktion property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setAktion(String value) {
+ this.aktion = value;
+ }
+
+}