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; /** *

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

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

 * <complexType name="GetBPKsResponseType">
 *   <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" minOccurs="0">
 *           <complexType>
 *             <complexContent>
 *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *                 <attribute name="Code" type="{http://www.w3.org/2001/XMLSchema}string" />
 *                 <attribute name="String" type="{http://www.w3.org/2001/XMLSchema}string" />
 *               </restriction>
 *             </complexContent>
 *           </complexType>
 *         </element>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "GetBPKsResponseType", propOrder = { "bpk", "fremdBPK", "fault" }) public class GetBPKsResponseType { @XmlElement(name = "BPK") protected List bpk; @XmlElement(name = "FremdBPK") protected List fremdBPK; @XmlElement(name = "Fault") protected GetBPKsResponseType.Fault fault; /** * 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 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; } /** *

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">
     *       <attribute name="Code" type="{http://www.w3.org/2001/XMLSchema}string" />
     *       <attribute name="String" type="{http://www.w3.org/2001/XMLSchema}string" />
     *     </restriction>
     *   </complexContent>
     * </complexType>
     * 
* * */ @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; } } }