summaryrefslogtreecommitdiff
path: root/src/main/java/at/gv/util/xsd/ur_V2/basicTypes/Bestandsnachweis.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/at/gv/util/xsd/ur_V2/basicTypes/Bestandsnachweis.java')
-rw-r--r--src/main/java/at/gv/util/xsd/ur_V2/basicTypes/Bestandsnachweis.java65
1 files changed, 0 insertions, 65 deletions
diff --git a/src/main/java/at/gv/util/xsd/ur_V2/basicTypes/Bestandsnachweis.java b/src/main/java/at/gv/util/xsd/ur_V2/basicTypes/Bestandsnachweis.java
deleted file mode 100644
index f22c3a5..0000000
--- a/src/main/java/at/gv/util/xsd/ur_V2/basicTypes/Bestandsnachweis.java
+++ /dev/null
@@ -1,65 +0,0 @@
-
-package at.gv.util.xsd.ur_V2.basicTypes;
-
-import javax.xml.bind.annotation.XmlAccessType;
-import javax.xml.bind.annotation.XmlAccessorType;
-import javax.xml.bind.annotation.XmlSeeAlso;
-import javax.xml.bind.annotation.XmlType;
-import javax.xml.bind.annotation.XmlValue;
-import at.gv.util.xsd.ersb.BestandsnachweisErsb;
-
-
-/**
- * <p>Java class for Bestandsnachweis complex type.
- *
- * <p>The following schema fragment specifies the expected content contained within this class.
- *
- * <pre>
- * &lt;complexType name="Bestandsnachweis">
- * &lt;simpleContent>
- * &lt;extension base="&lt;http://www.w3.org/2001/XMLSchema>string">
- * &lt;/extension>
- * &lt;/simpleContent>
- * &lt;/complexType>
- * </pre>
- *
- *
- */
-@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "Bestandsnachweis", propOrder = {
- "value"
-})
-@XmlSeeAlso({
- BestandsnachweisErsb.class,
- BestandsnachweisVollzug.class
-})
-public abstract class Bestandsnachweis {
-
- @XmlValue
- protected String value;
-
- /**
- * Gets the value of the value property.
- *
- * @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;
- }
-
-}