From f7c97e3423fa51f9f3d32f0285f2468d95d5987d Mon Sep 17 00:00:00 2001 From: Thomas Lenz Date: Thu, 23 Jan 2020 13:47:25 +0100 Subject: add first version of SZR client v4.0 --- .../java/at/gv/util/xsd/szr_v4/GetBPKResponse.java | 137 +++++++++++++++++++++ 1 file changed, 137 insertions(+) create mode 100644 src/main/java/at/gv/util/xsd/szr_v4/GetBPKResponse.java (limited to 'src/main/java/at/gv/util/xsd/szr_v4/GetBPKResponse.java') diff --git a/src/main/java/at/gv/util/xsd/szr_v4/GetBPKResponse.java b/src/main/java/at/gv/util/xsd/szr_v4/GetBPKResponse.java new file mode 100644 index 0000000..f2a0ccd --- /dev/null +++ b/src/main/java/at/gv/util/xsd/szr_v4/GetBPKResponse.java @@ -0,0 +1,137 @@ + +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.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + *

Java-Klasse für anonymous complex type. + * + *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. + * + *

+ * <complexType>
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="GetBPKReturn" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
+ *         <element name="FremdBPK" type="{urn:SZRServices}FremdBPKType" maxOccurs="unbounded" minOccurs="0"/>
+ *         <element name="PersonInfo" type="{urn:SZRServices}PersonInfoType" maxOccurs="5" minOccurs="0"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "getBPKReturn", + "fremdBPK", + "personInfo" +}) +@XmlRootElement(name = "GetBPKResponse") +public class GetBPKResponse { + + @XmlElement(name = "GetBPKReturn") + protected List getBPKReturn; + @XmlElement(name = "FremdBPK") + protected List fremdBPK; + @XmlElement(name = "PersonInfo") + protected List personInfo; + + /** + * Gets the value of the getBPKReturn property. + * + *

+ * 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 set method for the getBPKReturn property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getGetBPKReturn().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link String } + * + * + */ + public List getGetBPKReturn() { + if (getBPKReturn == null) { + getBPKReturn = new ArrayList(); + } + return this.getBPKReturn; + } + + /** + * Gets the value of the fremdBPK property. + * + *

+ * 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 set method for the fremdBPK property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getFremdBPK().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link FremdBPKType } + * + * + */ + public List getFremdBPK() { + if (fremdBPK == null) { + fremdBPK = new ArrayList(); + } + return this.fremdBPK; + } + + /** + * Gets the value of the personInfo property. + * + *

+ * 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 set method for the personInfo property. + * + *

+ * For example, to add a new item, do as follows: + *

+     *    getPersonInfo().add(newItem);
+     * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list + * {@link PersonInfoType } + * + * + */ + public List getPersonInfo() { + if (personInfo == null) { + personInfo = new ArrayList(); + } + return this.personInfo; + } + +} -- cgit v1.2.3