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

Java-Klasse für GetBPKFromStammzahlEncryptedResponseType complex type. * *

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

 * <complexType name="GetBPKFromStammzahlEncryptedResponseType">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="bPK" 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="Fault" type="{urn:SZRServices}Fault" minOccurs="0"/>
 *       </sequence>
 *       <attribute name="key" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "GetBPKFromStammzahlEncryptedResponseType", propOrder = { "bpk", "fremdBPK", "fault" }) public class GetBPKFromStammzahlEncryptedResponseType { @XmlElement(name = "bPK") protected List bpk; @XmlElement(name = "FremdBPK") protected List fremdBPK; @XmlElement(name = "Fault") protected Fault fault; @XmlAttribute(name = "key") @XmlSchemaType(name = "anySimpleType") protected String key; /** * Gets the value of the bpk 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 bpk property. * *

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

     *    getBPK().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link String } * * */ public List getBPK() { if (bpk == null) { bpk = new ArrayList(); } return this.bpk; } /** * 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; } /** * Ruft den Wert der fault-Eigenschaft ab. * * @return * possible object is * {@link Fault } * */ public Fault getFault() { return fault; } /** * Legt den Wert der fault-Eigenschaft fest. * * @param value * allowed object is * {@link Fault } * */ public void setFault(Fault value) { this.fault = value; } /** * Ruft den Wert der key-Eigenschaft ab. * * @return * possible object is * {@link String } * */ public String getKey() { return key; } /** * Legt den Wert der key-Eigenschaft fest. * * @param value * allowed object is * {@link String } * */ public void setKey(String value) { this.key = value; } }