Show AuthProvider.java syntax highlighted
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0.4-b01-fcs
// 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: 2006.11.24 at 05:56:32 PM MSK
//
package org.riverock.sso.annotation.schema.config;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for AuthProvider complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* <complexType name="AuthProvider">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="ProviderName" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="ProviderClass" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="ProviderParameters" type="{}AuthProviderParametersList" minOccurs="0"/>
* <element name="ProviderComment" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* </sequence>
* <attribute name="isUse" use="required" type="{http://www.w3.org/2001/XMLSchema}boolean" />
* </restriction>
* </complexContent>
* </complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "AuthProvider", propOrder = {
"providerName",
"providerClass",
"providerParameters",
"providerComment"
})
public class AuthProvider {
@XmlElement(name = "ProviderName", required = true)
protected String providerName;
@XmlElement(name = "ProviderClass", required = true)
protected String providerClass;
@XmlElement(name = "ProviderParameters")
protected AuthProviderParametersList providerParameters;
@XmlElement(name = "ProviderComment")
protected String providerComment;
@XmlAttribute(required = true)
protected boolean isUse;
/**
* Gets the value of the providerName property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getProviderName() {
return providerName;
}
/**
* Sets the value of the providerName property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setProviderName(String value) {
this.providerName = value;
}
/**
* Gets the value of the providerClass property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getProviderClass() {
return providerClass;
}
/**
* Sets the value of the providerClass property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setProviderClass(String value) {
this.providerClass = value;
}
/**
* Gets the value of the providerParameters property.
*
* @return
* possible object is
* {@link AuthProviderParametersList }
*
*/
public AuthProviderParametersList getProviderParameters() {
return providerParameters;
}
/**
* Sets the value of the providerParameters property.
*
* @param value
* allowed object is
* {@link AuthProviderParametersList }
*
*/
public void setProviderParameters(AuthProviderParametersList value) {
this.providerParameters = value;
}
/**
* Gets the value of the providerComment property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getProviderComment() {
return providerComment;
}
/**
* Sets the value of the providerComment property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setProviderComment(String value) {
this.providerComment = value;
}
/**
* Gets the value of the isUse property.
*
*/
public boolean isIsUse() {
return isUse;
}
/**
* Sets the value of the isUse property.
*
*/
public void setIsUse(boolean value) {
this.isUse = value;
}
}
See more files for this project here