summaryrefslogtreecommitdiff
path: root/src/main/java/at/gv/util/xsd/szr_v4/GetBPKZPVResponseType.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/at/gv/util/xsd/szr_v4/GetBPKZPVResponseType.java')
-rw-r--r--src/main/java/at/gv/util/xsd/szr_v4/GetBPKZPVResponseType.java93
1 files changed, 93 insertions, 0 deletions
diff --git a/src/main/java/at/gv/util/xsd/szr_v4/GetBPKZPVResponseType.java b/src/main/java/at/gv/util/xsd/szr_v4/GetBPKZPVResponseType.java
new file mode 100644
index 0000000..2cdf62d
--- /dev/null
+++ b/src/main/java/at/gv/util/xsd/szr_v4/GetBPKZPVResponseType.java
@@ -0,0 +1,93 @@
+
+package at.gv.util.xsd.szr_v4;
+
+import java.util.ArrayList;
+import java.util.List;
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlSeeAlso;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Java-Klasse für GetBPKZPVResponseType complex type.
+ *
+ * <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
+ *
+ * <pre>
+ * &lt;complexType name="GetBPKZPVResponseType"&gt;
+ * &lt;complexContent&gt;
+ * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
+ * &lt;sequence&gt;
+ * &lt;element name="ResultRecord" type="{urn:SZRServices}ResultRecord" maxOccurs="unbounded"/&gt;
+ * &lt;element name="InsertERnPResult" type="{http://www.w3.org/2001/XMLSchema}boolean"/&gt;
+ * &lt;/sequence&gt;
+ * &lt;/restriction&gt;
+ * &lt;/complexContent&gt;
+ * &lt;/complexType&gt;
+ * </pre>
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "GetBPKZPVResponseType", propOrder = {
+ "resultRecord",
+ "insertERnPResult"
+})
+@XmlSeeAlso({
+ GetBPKKombiResponseType.class
+})
+public class GetBPKZPVResponseType {
+
+ @XmlElement(name = "ResultRecord", required = true)
+ protected List<ResultRecord> resultRecord;
+ @XmlElement(name = "InsertERnPResult")
+ protected boolean insertERnPResult;
+
+ /**
+ * Gets the value of the resultRecord property.
+ *
+ * <p>
+ * This accessor method returns a reference to the live list,
+ * not a snapshot. Therefore any modification you make to the
+ * returned list will be present inside the JAXB object.
+ * This is why there is not a <CODE>set</CODE> method for the resultRecord property.
+ *
+ * <p>
+ * For example, to add a new item, do as follows:
+ * <pre>
+ * getResultRecord().add(newItem);
+ * </pre>
+ *
+ *
+ * <p>
+ * Objects of the following type(s) are allowed in the list
+ * {@link ResultRecord }
+ *
+ *
+ */
+ public List<ResultRecord> getResultRecord() {
+ if (resultRecord == null) {
+ resultRecord = new ArrayList<ResultRecord>();
+ }
+ return this.resultRecord;
+ }
+
+ /**
+ * Ruft den Wert der insertERnPResult-Eigenschaft ab.
+ *
+ */
+ public boolean isInsertERnPResult() {
+ return insertERnPResult;
+ }
+
+ /**
+ * Legt den Wert der insertERnPResult-Eigenschaft fest.
+ *
+ */
+ public void setInsertERnPResult(boolean value) {
+ this.insertERnPResult = value;
+ }
+
+}