From defceef8afef538555c13d33e344a89a828a3d97 Mon Sep 17 00:00:00 2001 From: Thomas Lenz Date: Fri, 20 Dec 2013 12:35:28 +0100 Subject: inital --- .../at/gv/util/xsd/ersb/BestandszeitraumErsb.java | 61 ++++++++++++++++++++++ 1 file changed, 61 insertions(+) create mode 100644 src/main/java/at/gv/util/xsd/ersb/BestandszeitraumErsb.java (limited to 'src/main/java/at/gv/util/xsd/ersb/BestandszeitraumErsb.java') diff --git a/src/main/java/at/gv/util/xsd/ersb/BestandszeitraumErsb.java b/src/main/java/at/gv/util/xsd/ersb/BestandszeitraumErsb.java new file mode 100644 index 0000000..77b6614 --- /dev/null +++ b/src/main/java/at/gv/util/xsd/ersb/BestandszeitraumErsb.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.Bestandszeitraum; + + +/** + *

Java class for BestandszeitraumErsb complex type. + * + *

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

+ * <complexType name="BestandszeitraumErsb">
+ *   <complexContent>
+ *     <extension base="{http://statistik.at/namespace/ur/stammdaten/2#}Bestandszeitraum">
+ *       <attGroup ref="{http://statistik.at/namespace/ersb/1#}ErsbAttributes"/>
+ *     </extension>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "BestandszeitraumErsb") +public class BestandszeitraumErsb + extends Bestandszeitraum +{ + + @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; + } + +} -- cgit v1.2.3