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.marketcetera.client.MockLoginModule.java

/**
 *
 * A Test login module to aid testing of Client via {@link MockServer}.
 * It allows login when the username is the same as the password.
 *
 * @author anshul@marketcetera.com

From source file org.polymap.core.security.Krb5LoginModule.java

/**
 * 
 *
 * @author <a href="http://www.polymap.de">Falko Brutigam</a>
 */
public class Krb5LoginModule extends com.sun.security.auth.module.Krb5LoginModule implements LoginModule {

From source file org.eclipse.ecr.runtime.api.login.SystemLoginModule.java

/**
 * @author <a href="mailto:bs@nuxeo.com">Bogdan Stefanescu</a>
 */
public class SystemLoginModule implements LoginModule {

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

From source file org.polymap.core.security.LdapLoginModule.java

/**
 * Extension of {@link com.sun.security.auth.module.LdapLoginModule} that supports
 * and provides the {@link UserPrincipal}.
 * 
 * @author <a href="http://www.polymap.de">Falko Brutigam</a>
 */

From source file be.fedict.eid.applet.beta.service.AuthorizationLoginModule.java

/**
 * JAAS Login Module for assigning a principal JBoss Roles.
 * 
 * @author Frank Cornelis
 * 
 */

From source file org.sofun.core.api.security.SofunLoginModule.java

/**
 * Sofun Login Module.
 * 
 * <p/>
 * 
 * This ties into JAAS to perform the actual authentication against the database.

From source file org.acegisecurity.providers.jaas.SecurityContextLoginModule.java

/**
 * An implementation of {@link LoginModule} that uses an Acegi Security {@link
 * org.acegisecurity.context.SecurityContext SecurityContext} to provide authentication.<p>This LoginModule
 * provides opposite functionality to the {@link JaasAuthenticationProvider} API, and should not really be used in
 * conjunction with it.</p>
 *  <p>The {@link JaasAuthenticationProvider} allows Acegi to authenticate against Jaas.</p>

From source file be.fedict.hsm.model.security.ApplicationLoginModule.java

/**
 * Application JAAS Login Module. Besides assigning a role (RBAC), this login
 * module also maps from the credential towards a specific application
 * identifier (implies a form of discretionary access control).
 * 
 * @author Frank Cornelis

From source file be.fedict.hsm.model.security.AdministratorLoginModule.java

public class AdministratorLoginModule implements LoginModule {

    private static final Log LOG = LogFactory.getLog(AdministratorLoginModule.class);

    private Subject subject;

From source file org.springframework.security.authentication.jaas.SecurityContextLoginModule.java

/**
 * An implementation of {@link LoginModule} that uses a Spring Security
 * {@link org.springframework.security.core.context.SecurityContext SecurityContext} to
 * provide authentication.
 * <p>
 * This LoginModule provides opposite functionality to the