Open Source Repository

Home /cxf/cxf-api-2.5.2 | Repository Home



org/apache/cxf/configuration/security/ClientAuthentication.java
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-2 
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2012.01.20 at 11:30:58 AM EST 
//


package org.apache.cxf.configuration.security;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlType;


/**
 <p>Java class for ClientAuthentication complex type.
 
 <p>The following schema fragment specifies the expected content contained within this class.
 
 <pre>
 * &lt;complexType name="ClientAuthentication">
 *   &lt;complexContent>
 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       &lt;attribute name="want" type="{http://cxf.apache.org/configuration/parameterized-types}ParameterizedBoolean" />
 *       &lt;attribute name="required" type="{http://cxf.apache.org/configuration/parameterized-types}ParameterizedBoolean" />
 *     &lt;/restriction>
 *   &lt;/complexContent>
 * &lt;/complexType>
 </pre>
 
 
 */
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ClientAuthentication")
public class ClientAuthentication {

    @XmlAttribute(name = "want")
    protected Boolean want;
    @XmlAttribute(name = "required")
    protected Boolean required;

    /**
     * Sets the value of the want property.
     
     */
    public void setWant(boolean value) {
        want = value;
    }

    public void unsetWant() {
        want = null;
    }

    public boolean isSetWant() {
        return (this.want!= null);
    }

    /**
     * Gets the value of the want property.
     
     */
    public boolean isWant() {
        return want;
    }

    /**
     * Sets the value of the required property.
     
     */
    public void setRequired(boolean value) {
        required = value;
    }

    public void unsetRequired() {
        required = null;
    }

    public boolean isSetRequired() {
        return (this.required!= null);
    }

    /**
     * Gets the value of the required property.
     
     */
    public boolean isRequired() {
        return required;
    }

}