All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.cxf.configuration.security.ClientAuthentication Maven / Gradle / Ivy

There is a newer version: 2.7.18
Show newest version
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-661 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2009.05.22 at 12:13:22 PM EDT 
//


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://www.w3.org/2001/XMLSchema}boolean" />
 *       <attribute name="required" type="{http://www.w3.org/2001/XMLSchema}boolean" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ClientAuthentication") public class ClientAuthentication { @XmlAttribute protected Boolean want; @XmlAttribute protected Boolean required; /** * Gets the value of the want property. * * @return * possible object is * {@link Boolean } * */ public boolean isWant() { return want; } /** * Sets the value of the want property. * * @param value * allowed object is * {@link Boolean } * */ public void setWant(boolean value) { this.want = value; } public boolean isSetWant() { return (this.want!= null); } public void unsetWant() { this.want = null; } /** * Gets the value of the required property. * * @return * possible object is * {@link Boolean } * */ public boolean isRequired() { return required; } /** * Sets the value of the required property. * * @param value * allowed object is * {@link Boolean } * */ public void setRequired(boolean value) { this.required = value; } public boolean isSetRequired() { return (this.required!= null); } public void unsetRequired() { this.required = null; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy