org.apache.cxf.configuration.security.ClientAuthentication Maven / Gradle / Ivy
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-2
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2011.12.15 at 11:10:53 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;
/**
* Java class for ClientAuthentication complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="ClientAuthentication">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <attribute name="want" type="{http://cxf.apache.org/configuration/parameterized-types}ParameterizedBoolean" />
* <attribute name="required" type="{http://cxf.apache.org/configuration/parameterized-types}ParameterizedBoolean" />
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@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;
}
}