package at.gv.util.xsd.szr_v4; 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-Klasse für GetBPKKombiResponseType complex type. * *

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

 * <complexType name="GetBPKKombiResponseType">
 *   <complexContent>
 *     <extension base="{urn:SZRServices}GetBPKZPVResponseType">
 *       <sequence>
 *         <element name="FoundWithSuchwizard" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
 *         <element name="Sessionid" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "GetBPKKombiResponseType", propOrder = { "foundWithSuchwizard", "sessionid" }) public class GetBPKKombiResponseType extends GetBPKZPVResponseType { @XmlElement(name = "FoundWithSuchwizard") protected boolean foundWithSuchwizard; @XmlElement(name = "Sessionid", required = true) protected String sessionid; /** * Ruft den Wert der foundWithSuchwizard-Eigenschaft ab. * */ public boolean isFoundWithSuchwizard() { return foundWithSuchwizard; } /** * Legt den Wert der foundWithSuchwizard-Eigenschaft fest. * */ public void setFoundWithSuchwizard(boolean value) { this.foundWithSuchwizard = value; } /** * Ruft den Wert der sessionid-Eigenschaft ab. * * @return * possible object is * {@link String } * */ public String getSessionid() { return sessionid; } /** * Legt den Wert der sessionid-Eigenschaft fest. * * @param value * allowed object is * {@link String } * */ public void setSessionid(String value) { this.sessionid = value; } }