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.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *

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="GetBPKReturn" type="{http://www.w3.org/2001/XMLSchema}string" 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 String getBPKReturn; @XmlElement(name = "FremdBPK") protected List fremdBPK; @XmlElement(name = "PersonInfo") protected List personInfo; /** * Gets the value of the getBPKReturn property. * * @return * possible object is * {@link String } * */ public String getGetBPKReturn() { return getBPKReturn; } /** * Sets the value of the getBPKReturn property. * * @param value * allowed object is * {@link String } * */ public void setGetBPKReturn(String value) { this.getBPKReturn = 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; } /** * 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; } }