summaryrefslogtreecommitdiff
path: root/src/main/java/at/gv/util/xsd/szr_v4/GetBPKKombiResponseType.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/at/gv/util/xsd/szr_v4/GetBPKKombiResponseType.java')
-rw-r--r--src/main/java/at/gv/util/xsd/szr_v4/GetBPKKombiResponseType.java84
1 files changed, 84 insertions, 0 deletions
diff --git a/src/main/java/at/gv/util/xsd/szr_v4/GetBPKKombiResponseType.java b/src/main/java/at/gv/util/xsd/szr_v4/GetBPKKombiResponseType.java
new file mode 100644
index 0000000..2343aed
--- /dev/null
+++ b/src/main/java/at/gv/util/xsd/szr_v4/GetBPKKombiResponseType.java
@@ -0,0 +1,84 @@
+
+package at.gv.util.xsd.szr_v4;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Java-Klasse für GetBPKKombiResponseType complex type.
+ *
+ * <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
+ *
+ * <pre>
+ * &lt;complexType name="GetBPKKombiResponseType"&gt;
+ * &lt;complexContent&gt;
+ * &lt;extension base="{urn:SZRServices}GetBPKZPVResponseType"&gt;
+ * &lt;sequence&gt;
+ * &lt;element name="FoundWithSuchwizard" type="{http://www.w3.org/2001/XMLSchema}boolean"/&gt;
+ * &lt;element name="Sessionid" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
+ * &lt;/sequence&gt;
+ * &lt;/extension&gt;
+ * &lt;/complexContent&gt;
+ * &lt;/complexType&gt;
+ * </pre>
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "GetBPKKombiResponseType", propOrder = {
+ "foundWithSuchwizard",
+ "sessionid"
+})
+public class GetBPKKombiResponseType
+ extends GetBPKZPVResponseType
+{
+
+ @XmlElement(name = "FoundWithSuchwizard")
+ protected boolean foundWithSuchwizard;
+ @XmlElement(name = "Sessionid", required = true)
+ protected String sessionid;
+
+ /**
+ * Ruft den Wert der foundWithSuchwizard-Eigenschaft ab.
+ *
+ */
+ public boolean isFoundWithSuchwizard() {
+ return foundWithSuchwizard;
+ }
+
+ /**
+ * Legt den Wert der foundWithSuchwizard-Eigenschaft fest.
+ *
+ */
+ public void setFoundWithSuchwizard(boolean value) {
+ this.foundWithSuchwizard = value;
+ }
+
+ /**
+ * Ruft den Wert der sessionid-Eigenschaft ab.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getSessionid() {
+ return sessionid;
+ }
+
+ /**
+ * Legt den Wert der sessionid-Eigenschaft fest.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setSessionid(String value) {
+ this.sessionid = value;
+ }
+
+}