From defceef8afef538555c13d33e344a89a828a3d97 Mon Sep 17 00:00:00 2001 From: Thomas Lenz Date: Fri, 20 Dec 2013 12:35:28 +0100 Subject: inital --- .../gv/util/xsd/szr/GetBPKKombiResponseType.java | 294 +++++++++++++++++++++ 1 file changed, 294 insertions(+) create mode 100644 src/main/java/at/gv/util/xsd/szr/GetBPKKombiResponseType.java (limited to 'src/main/java/at/gv/util/xsd/szr/GetBPKKombiResponseType.java') diff --git a/src/main/java/at/gv/util/xsd/szr/GetBPKKombiResponseType.java b/src/main/java/at/gv/util/xsd/szr/GetBPKKombiResponseType.java new file mode 100644 index 0000000..d010526 --- /dev/null +++ b/src/main/java/at/gv/util/xsd/szr/GetBPKKombiResponseType.java @@ -0,0 +1,294 @@ + +package at.gv.util.xsd.szr; + +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.XmlType; + + +/** + *

Java class for GetBPKKombiResponseType complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+ * <complexType name="GetBPKKombiResponseType">
+ *   <complexContent>
+ *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       <sequence>
+ *         <element name="ResultRecord" maxOccurs="unbounded">
+ *           <complexType>
+ *             <complexContent>
+ *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *                 <sequence>
+ *                   <element name="PersonInfo" type="{urn:SZRServices}PersonInfoType"/>
+ *                   <element name="Register" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *                   <element name="bPK" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *                   <element name="FremdBPK" type="{urn:SZRServices}FremdBPKType" maxOccurs="unbounded" minOccurs="0"/>
+ *                 </sequence>
+ *               </restriction>
+ *             </complexContent>
+ *           </complexType>
+ *         </element>
+ *         <element name="InsertERnPResult" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ *         <element name="FoundWithSuchwizard" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ *         <element name="Sessionid" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ *       </sequence>
+ *     </restriction>
+ *   </complexContent>
+ * </complexType>
+ * 
+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "GetBPKKombiResponseType", propOrder = { + "resultRecord", + "insertERnPResult", + "foundWithSuchwizard", + "sessionid" +}) +public class GetBPKKombiResponseType { + + @XmlElement(name = "ResultRecord", required = true) + protected List resultRecord; + @XmlElement(name = "InsertERnPResult") + protected boolean insertERnPResult; + @XmlElement(name = "FoundWithSuchwizard") + protected boolean foundWithSuchwizard; + @XmlElement(name = "Sessionid", required = true) + protected String sessionid; + + /** + * Gets the value of the resultRecord 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 resultRecord property. + * + *

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

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

+ * Objects of the following type(s) are allowed in the list + * {@link GetBPKKombiResponseType.ResultRecord } + * + * + */ + public List getResultRecord() { + if (resultRecord == null) { + resultRecord = new ArrayList(); + } + return this.resultRecord; + } + + /** + * Gets the value of the insertERnPResult property. + * + */ + public boolean isInsertERnPResult() { + return insertERnPResult; + } + + /** + * Sets the value of the insertERnPResult property. + * + */ + public void setInsertERnPResult(boolean value) { + this.insertERnPResult = value; + } + + /** + * Gets the value of the foundWithSuchwizard property. + * + */ + public boolean isFoundWithSuchwizard() { + return foundWithSuchwizard; + } + + /** + * Sets the value of the foundWithSuchwizard property. + * + */ + public void setFoundWithSuchwizard(boolean value) { + this.foundWithSuchwizard = value; + } + + /** + * Gets the value of the sessionid property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getSessionid() { + return sessionid; + } + + /** + * Sets the value of the sessionid property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setSessionid(String value) { + this.sessionid = value; + } + + + /** + *

Java class for anonymous complex type. + * + *

The following schema fragment specifies the expected content contained within this class. + * + *

+     * <complexType>
+     *   <complexContent>
+     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+     *       <sequence>
+     *         <element name="PersonInfo" type="{urn:SZRServices}PersonInfoType"/>
+     *         <element name="Register" type="{http://www.w3.org/2001/XMLSchema}string"/>
+     *         <element name="bPK" type="{http://www.w3.org/2001/XMLSchema}string"/>
+     *         <element name="FremdBPK" type="{urn:SZRServices}FremdBPKType" maxOccurs="unbounded" minOccurs="0"/>
+     *       </sequence>
+     *     </restriction>
+     *   </complexContent>
+     * </complexType>
+     * 
+ * + * + */ + @XmlAccessorType(XmlAccessType.FIELD) + @XmlType(name = "", propOrder = { + "personInfo", + "register", + "bpk", + "fremdBPK" + }) + public static class ResultRecord { + + @XmlElement(name = "PersonInfo", required = true) + protected PersonInfoType personInfo; + @XmlElement(name = "Register", required = true) + protected String register; + @XmlElement(name = "bPK", required = true) + protected String bpk; + @XmlElement(name = "FremdBPK") + protected List fremdBPK; + + /** + * Gets the value of the personInfo property. + * + * @return + * possible object is + * {@link PersonInfoType } + * + */ + public PersonInfoType getPersonInfo() { + return personInfo; + } + + /** + * Sets the value of the personInfo property. + * + * @param value + * allowed object is + * {@link PersonInfoType } + * + */ + public void setPersonInfo(PersonInfoType value) { + this.personInfo = value; + } + + /** + * Gets the value of the register property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getRegister() { + return register; + } + + /** + * Sets the value of the register property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setRegister(String value) { + this.register = value; + } + + /** + * Gets the value of the bpk property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getBPK() { + return bpk; + } + + /** + * Sets the value of the bpk property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setBPK(String value) { + this.bpk = value; + } + + /** + * 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; + } + + } + +} -- cgit v1.2.3