summaryrefslogtreecommitdiff
path: root/src/main/java/at/gv/util/xsd/ur_V2/basicTypes/Vollzug.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/at/gv/util/xsd/ur_V2/basicTypes/Vollzug.java')
-rw-r--r--src/main/java/at/gv/util/xsd/ur_V2/basicTypes/Vollzug.java209
1 files changed, 0 insertions, 209 deletions
diff --git a/src/main/java/at/gv/util/xsd/ur_V2/basicTypes/Vollzug.java b/src/main/java/at/gv/util/xsd/ur_V2/basicTypes/Vollzug.java
deleted file mode 100644
index 09d2580..0000000
--- a/src/main/java/at/gv/util/xsd/ur_V2/basicTypes/Vollzug.java
+++ /dev/null
@@ -1,209 +0,0 @@
-
-package at.gv.util.xsd.ur_V2.basicTypes;
-
-import java.math.BigInteger;
-import javax.xml.bind.annotation.XmlAccessType;
-import javax.xml.bind.annotation.XmlAccessorType;
-import javax.xml.bind.annotation.XmlAttribute;
-import javax.xml.bind.annotation.XmlElement;
-import javax.xml.bind.annotation.XmlID;
-import javax.xml.bind.annotation.XmlSchemaType;
-import javax.xml.bind.annotation.XmlType;
-import javax.xml.bind.annotation.adapters.CollapsedStringAdapter;
-import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
-import at.gv.util.xsd.ur_V2.simpletypes.VollzugStatusTyp;
-
-
-/**
- * <p>Java class for Vollzug complex type.
- *
- * <p>The following schema fragment specifies the expected content contained within this class.
- *
- * <pre>
- * &lt;complexType name="Vollzug">
- * &lt;complexContent>
- * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- * &lt;sequence>
- * &lt;element name="Antrag" type="{http://statistik.at/namespace/ur/stammdaten/2#}VollzugElem"/>
- * &lt;element name="Vollzug" type="{http://statistik.at/namespace/ur/stammdaten/2#}VollzugElem" minOccurs="0"/>
- * &lt;element name="Zurueckstellung" type="{http://statistik.at/namespace/ur/stammdaten/2#}VollzugElem" minOccurs="0"/>
- * &lt;/sequence>
- * &lt;attribute name="id" use="required" type="{http://www.w3.org/2001/XMLSchema}ID" />
- * &lt;attribute name="nummer" use="required" type="{http://www.w3.org/2001/XMLSchema}integer" />
- * &lt;attribute name="status" use="required" type="{http://statistik.at/namespace/ur/simpleTypes/2#}VollzugStatusTyp" />
- * &lt;/restriction>
- * &lt;/complexContent>
- * &lt;/complexType>
- * </pre>
- *
- *
- */
-@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "Vollzug", propOrder = {
- "antrag",
- "vollzug",
- "zurueckstellung"
-})
-public class Vollzug {
-
- @XmlElement(name = "Antrag", required = true)
- protected VollzugElem antrag;
- @XmlElement(name = "Vollzug")
- protected VollzugElem vollzug;
- @XmlElement(name = "Zurueckstellung")
- protected VollzugElem zurueckstellung;
- @XmlAttribute(name = "id", required = true)
- @XmlJavaTypeAdapter(CollapsedStringAdapter.class)
- @XmlID
- @XmlSchemaType(name = "ID")
- protected String id;
- @XmlAttribute(name = "nummer", required = true)
- protected BigInteger nummer;
- @XmlAttribute(name = "status", required = true)
- protected VollzugStatusTyp status;
-
- /**
- * Gets the value of the antrag property.
- *
- * @return
- * possible object is
- * {@link VollzugElem }
- *
- */
- public VollzugElem getAntrag() {
- return antrag;
- }
-
- /**
- * Sets the value of the antrag property.
- *
- * @param value
- * allowed object is
- * {@link VollzugElem }
- *
- */
- public void setAntrag(VollzugElem value) {
- this.antrag = value;
- }
-
- /**
- * Gets the value of the vollzug property.
- *
- * @return
- * possible object is
- * {@link VollzugElem }
- *
- */
- public VollzugElem getVollzug() {
- return vollzug;
- }
-
- /**
- * Sets the value of the vollzug property.
- *
- * @param value
- * allowed object is
- * {@link VollzugElem }
- *
- */
- public void setVollzug(VollzugElem value) {
- this.vollzug = value;
- }
-
- /**
- * Gets the value of the zurueckstellung property.
- *
- * @return
- * possible object is
- * {@link VollzugElem }
- *
- */
- public VollzugElem getZurueckstellung() {
- return zurueckstellung;
- }
-
- /**
- * Sets the value of the zurueckstellung property.
- *
- * @param value
- * allowed object is
- * {@link VollzugElem }
- *
- */
- public void setZurueckstellung(VollzugElem value) {
- this.zurueckstellung = value;
- }
-
- /**
- * Gets the value of the id property.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getId() {
- return id;
- }
-
- /**
- * Sets the value of the id property.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setId(String value) {
- this.id = value;
- }
-
- /**
- * Gets the value of the nummer property.
- *
- * @return
- * possible object is
- * {@link BigInteger }
- *
- */
- public BigInteger getNummer() {
- return nummer;
- }
-
- /**
- * Sets the value of the nummer property.
- *
- * @param value
- * allowed object is
- * {@link BigInteger }
- *
- */
- public void setNummer(BigInteger value) {
- this.nummer = value;
- }
-
- /**
- * Gets the value of the status property.
- *
- * @return
- * possible object is
- * {@link VollzugStatusTyp }
- *
- */
- public VollzugStatusTyp getStatus() {
- return status;
- }
-
- /**
- * Sets the value of the status property.
- *
- * @param value
- * allowed object is
- * {@link VollzugStatusTyp }
- *
- */
- public void setStatus(VollzugStatusTyp value) {
- this.status = value;
- }
-
-}