summaryrefslogtreecommitdiff
path: root/src/main/java/at/gv/util/xsd/ersb/ErsbRequest.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/at/gv/util/xsd/ersb/ErsbRequest.java')
-rw-r--r--src/main/java/at/gv/util/xsd/ersb/ErsbRequest.java92
1 files changed, 92 insertions, 0 deletions
diff --git a/src/main/java/at/gv/util/xsd/ersb/ErsbRequest.java b/src/main/java/at/gv/util/xsd/ersb/ErsbRequest.java
new file mode 100644
index 0000000..1fc0573
--- /dev/null
+++ b/src/main/java/at/gv/util/xsd/ersb/ErsbRequest.java
@@ -0,0 +1,92 @@
+
+package at.gv.util.xsd.ersb;
+
+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.XmlType;
+import at.gv.util.xsd.ersb.personendata1.PersonenDatenTyp;
+
+
+/**
+ * <p>Java class for ErsbRequest complex type.
+ *
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ *
+ * <pre>
+ * &lt;complexType name="ErsbRequest">
+ * &lt;complexContent>
+ * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * &lt;sequence>
+ * &lt;element name="PersonenDaten" type="{http://statistik.at/namespace/ersb/persondata/1#}PersonenDatenTyp"/>
+ * &lt;/sequence>
+ * &lt;attribute name="id" type="{http://www.w3.org/2001/XMLSchema}integer" />
+ * &lt;/restriction>
+ * &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "ErsbRequest", propOrder = {
+ "personenDaten"
+})
+public class ErsbRequest {
+
+ @XmlElement(name = "PersonenDaten", required = true)
+ protected PersonenDatenTyp personenDaten;
+ @XmlAttribute(name = "id")
+ protected BigInteger id;
+
+ /**
+ * Gets the value of the personenDaten property.
+ *
+ * @return
+ * possible object is
+ * {@link PersonenDatenTyp }
+ *
+ */
+ public PersonenDatenTyp getPersonenDaten() {
+ return personenDaten;
+ }
+
+ /**
+ * Sets the value of the personenDaten property.
+ *
+ * @param value
+ * allowed object is
+ * {@link PersonenDatenTyp }
+ *
+ */
+ public void setPersonenDaten(PersonenDatenTyp value) {
+ this.personenDaten = value;
+ }
+
+ /**
+ * Gets the value of the id property.
+ *
+ * @return
+ * possible object is
+ * {@link BigInteger }
+ *
+ */
+ public BigInteger getId() {
+ return id;
+ }
+
+ /**
+ * Sets the value of the id property.
+ *
+ * @param value
+ * allowed object is
+ * {@link BigInteger }
+ *
+ */
+ public void setId(BigInteger value) {
+ this.id = value;
+ }
+
+}