summaryrefslogtreecommitdiff
path: root/src/main/java/at/gv/util/xsd/szr_v4/GetBPKsResponseType.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/at/gv/util/xsd/szr_v4/GetBPKsResponseType.java')
-rw-r--r--src/main/java/at/gv/util/xsd/szr_v4/GetBPKsResponseType.java213
1 files changed, 213 insertions, 0 deletions
diff --git a/src/main/java/at/gv/util/xsd/szr_v4/GetBPKsResponseType.java b/src/main/java/at/gv/util/xsd/szr_v4/GetBPKsResponseType.java
new file mode 100644
index 0000000..ab671f5
--- /dev/null
+++ b/src/main/java/at/gv/util/xsd/szr_v4/GetBPKsResponseType.java
@@ -0,0 +1,213 @@
+
+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.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Java-Klasse für GetBPKsResponseType complex type.
+ *
+ * <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
+ *
+ * <pre>
+ * &lt;complexType name="GetBPKsResponseType"&gt;
+ * &lt;complexContent&gt;
+ * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
+ * &lt;sequence&gt;
+ * &lt;element name="BPK" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
+ * &lt;element name="FremdBPK" type="{urn:SZRServices}FremdBPKType" maxOccurs="unbounded" minOccurs="0"/&gt;
+ * &lt;element name="Fault" minOccurs="0"&gt;
+ * &lt;complexType&gt;
+ * &lt;complexContent&gt;
+ * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
+ * &lt;attribute name="Code" type="{http://www.w3.org/2001/XMLSchema}string" /&gt;
+ * &lt;attribute name="String" type="{http://www.w3.org/2001/XMLSchema}string" /&gt;
+ * &lt;/restriction&gt;
+ * &lt;/complexContent&gt;
+ * &lt;/complexType&gt;
+ * &lt;/element&gt;
+ * &lt;/sequence&gt;
+ * &lt;/restriction&gt;
+ * &lt;/complexContent&gt;
+ * &lt;/complexType&gt;
+ * </pre>
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "GetBPKsResponseType", propOrder = {
+ "bpk",
+ "fremdBPK",
+ "fault"
+})
+public class GetBPKsResponseType {
+
+ @XmlElement(name = "BPK")
+ protected String bpk;
+ @XmlElement(name = "FremdBPK")
+ protected List<FremdBPKType> fremdBPK;
+ @XmlElement(name = "Fault")
+ protected GetBPKsResponseType.Fault fault;
+
+ /**
+ * Ruft den Wert der bpk-Eigenschaft ab.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getBPK() {
+ return bpk;
+ }
+
+ /**
+ * Legt den Wert der bpk-Eigenschaft fest.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setBPK(String value) {
+ this.bpk = value;
+ }
+
+ /**
+ * Gets the value of the fremdBPK 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 fremdBPK property.
+ *
+ * <p>
+ * For example, to add a new item, do as follows:
+ * <pre>
+ * getFremdBPK().add(newItem);
+ * </pre>
+ *
+ *
+ * <p>
+ * Objects of the following type(s) are allowed in the list
+ * {@link FremdBPKType }
+ *
+ *
+ */
+ public List<FremdBPKType> getFremdBPK() {
+ if (fremdBPK == null) {
+ fremdBPK = new ArrayList<FremdBPKType>();
+ }
+ return this.fremdBPK;
+ }
+
+ /**
+ * Ruft den Wert der fault-Eigenschaft ab.
+ *
+ * @return
+ * possible object is
+ * {@link GetBPKsResponseType.Fault }
+ *
+ */
+ public GetBPKsResponseType.Fault getFault() {
+ return fault;
+ }
+
+ /**
+ * Legt den Wert der fault-Eigenschaft fest.
+ *
+ * @param value
+ * allowed object is
+ * {@link GetBPKsResponseType.Fault }
+ *
+ */
+ public void setFault(GetBPKsResponseType.Fault value) {
+ this.fault = value;
+ }
+
+
+ /**
+ * <p>Java-Klasse für anonymous complex type.
+ *
+ * <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
+ *
+ * <pre>
+ * &lt;complexType&gt;
+ * &lt;complexContent&gt;
+ * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
+ * &lt;attribute name="Code" type="{http://www.w3.org/2001/XMLSchema}string" /&gt;
+ * &lt;attribute name="String" type="{http://www.w3.org/2001/XMLSchema}string" /&gt;
+ * &lt;/restriction&gt;
+ * &lt;/complexContent&gt;
+ * &lt;/complexType&gt;
+ * </pre>
+ *
+ *
+ */
+ @XmlAccessorType(XmlAccessType.FIELD)
+ @XmlType(name = "")
+ public static class Fault {
+
+ @XmlAttribute(name = "Code")
+ protected String code;
+ @XmlAttribute(name = "String")
+ protected String string;
+
+ /**
+ * Ruft den Wert der code-Eigenschaft ab.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getCode() {
+ return code;
+ }
+
+ /**
+ * Legt den Wert der code-Eigenschaft fest.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setCode(String value) {
+ this.code = value;
+ }
+
+ /**
+ * Ruft den Wert der string-Eigenschaft ab.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getString() {
+ return string;
+ }
+
+ /**
+ * Legt den Wert der string-Eigenschaft fest.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setString(String value) {
+ this.string = value;
+ }
+
+ }
+
+}