Example usage for javax.security.auth.spi LoginModule interface-usage

List of usage examples for javax.security.auth.spi LoginModule interface-usage

Introduction

In this page you can find the example usage for javax.security.auth.spi LoginModule interface-usage.

Usage

From source file org.apache.geronimo.security.realm.providers.GenericHttpHeaderSqlLoginmodule.java

public class GenericHttpHeaderSqlLoginmodule extends GenericHttpHeaderLoginmodule implements LoginModule {
    private static Log log = LogFactory.getLog(GenericHttpHeaderSqlLoginmodule.class);

    private final static String GROUP_SELECT = "groupSelect";
    private final static String USER = "jdbcUser";
    private final static String DATABASE_POOL_NAME = "dataSourceName";

From source file de.adorsys.oauth.loginmodule.HTTPAuthenticationLoginModule.java

/**
 * HTTPAuthenticationLoginModule
 */
public class HTTPAuthenticationLoginModule implements LoginModule {

    private static final Logger LOG = LoggerFactory.getLogger(HTTPAuthenticationLoginModule.class);

From source file org.sakaiproject.jcr.jackrabbit.sakai.SakaiLoginModule.java

public class SakaiLoginModule implements LoginModule {
    private static final String SAKAI_SYSTEM_USER = "sakaisystem";

    private static final String SAKAI_ANON_USER = ".anon";

    private static final Log log = LogFactory.getLog(SakaiLoginModule.class);

From source file info.magnolia.jaas.sp.AbstractLoginModule.java

/**
 * Abstract implementation of the <code>LoginModule</code> providing common methods and constants implementation.
 * @author Sameer Charles
 * $Id$
 */
public abstract class AbstractLoginModule implements LoginModule {

From source file net.ontopia.topicmaps.nav2.realm.TMLoginModule.java

/**
 * INTERNAL: TMLoginModule provides authentication to web applications by 
 * checking user credentials against information stored in a topicmap.
 */
public class TMLoginModule implements LoginModule {

From source file org.apache.geronimo.security.realm.providers.GenericHttpHeaderLdapLoginModule.java

public class GenericHttpHeaderLdapLoginModule extends GenericHttpHeaderLoginmodule implements LoginModule {

    private static Log log = LogFactory.getLog(GenericHttpHeaderLdapLoginModule.class);

    private final static String HEADER_NAMES = "headerNames";
    private final static String AUTHENTICATION_AUTHORITY = "authenticationAuthority";

From source file com.ibm.tivoli.tuna.jaas.sample.SampleLoginModule.java

/**
 * <p>
 * This sample LoginModule authenticates users with a password.
 * 
 * <p>
 * This LoginModule only recognizes one user: testUser

From source file client.SampleLoginModule.java

/**
 * <p>
 * This sample LoginModule authenticates users with a password.
 * 
 * <p>
 * This LoginModule only recognizes one user: testUser

From source file org.apache.jackrabbit.core.security.authentication.AbstractLoginModule.java

/**
 * <code>AbstractLoginModule</code> provides the means for the common
 * authentication tasks within the Repository.
 * <p/>
 * On successfull authentication it associates the credentials to principals
 * using the {@link PrincipalProvider} configured for this LoginModule<p />

From source file org.betaconceptframework.astroboa.security.jaas.AstroboaLoginModule.java

/**
 * This class represents Astroboa implementation of a JAAS LoginModule.
 * 
 * @author Gregory Chomatas (gchomatas@betaconcept.com)
 * @author Savvas Triantafyllou (striantafyllou@betaconcept.com)
 *