package at.gv.util.xsd.szr_v4; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlType; /** *

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

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

 * <complexType name="GetVKZPermissionResponseType">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="isAllowed" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
 *         <element name="behSchluessel" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "GetVKZPermissionResponseType", propOrder = { "isAllowed", "behSchluessel" }) public class GetVKZPermissionResponseType { protected boolean isAllowed; protected String behSchluessel; /** * Ruft den Wert der isAllowed-Eigenschaft ab. * */ public boolean isIsAllowed() { return isAllowed; } /** * Legt den Wert der isAllowed-Eigenschaft fest. * */ public void setIsAllowed(boolean value) { this.isAllowed = value; } /** * Ruft den Wert der behSchluessel-Eigenschaft ab. * * @return * possible object is * {@link String } * */ public String getBehSchluessel() { return behSchluessel; } /** * Legt den Wert der behSchluessel-Eigenschaft fest. * * @param value * allowed object is * {@link String } * */ public void setBehSchluessel(String value) { this.behSchluessel = value; } }