Code Search for Developers
 
 
  

AuthProvider.java from riverock at Krugle


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>
 * &lt;complexType name="AuthProvider">
 *   &lt;complexContent>
 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       &lt;sequence>
 *         &lt;element name="ProviderName" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         &lt;element name="ProviderClass" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         &lt;element name="ProviderParameters" type="{}AuthProviderParametersList" minOccurs="0"/>
 *         &lt;element name="ProviderComment" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *       &lt;/sequence>
 *       &lt;attribute name="isUse" use="required" type="{http://www.w3.org/2001/XMLSchema}boolean" />
 *     &lt;/restriction>
 *   &lt;/complexContent>
 * &lt;/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

riverock

Main project of riverock is Webmill portal. Webmill is CMS portal with build-in XML/XSLT transformation of content of portlet, JSR-168, JSF and other things.

Project homepage: http://sourceforge.net/projects/riverock
Programming language(s): Java,JSP,SQL,XML
License: other

  Auth.java
  AuthProvider.java
  AuthProviderParameters.java
  AuthProviderParametersList.java
  MainUserInfo.java
  ObjectFactory.java
  Parameter.java
  SsoConfig.java