Example usage for org.springframework.security.authentication AuthenticationProvider interface-usage

List of usage examples for org.springframework.security.authentication AuthenticationProvider interface-usage

Introduction

In this page you can find the example usage for org.springframework.security.authentication AuthenticationProvider interface-usage.

Usage

From source file org.linagora.linshare.auth.sso.SSOAuthenticationProvider.java

public class SSOAuthenticationProvider implements AuthenticationProvider {

    private final static Log logger = LogFactory.getLog(SSOAuthenticationProvider.class);

    private AuthentificationFacade authentificationFacade;

From source file com.ctb.prism.login.security.provider.AbstractUserDetailsAuthenticationProvider.java

/**
 * A base {@link AuthenticationProvider} that allows subclasses to override and work with {@link
 * org.springframework.security.core.userdetails.UserDetails} objects. The class is designed to respond to {@link
 * UsernamePasswordAuthenticationToken} authentication requests.
 *
 * <p>

From source file org.libreplan.web.users.services.LDAPCustomAuthenticationProvider.java

/**
 * An extending from AbstractUserDetailsAuthenticationProvider class which is
 * used to implement the authentication against LDAP.
 *
 * This provider implements the process explained in
 * <https://wiki.libreplan.org/twiki/bin/view/LibrePlan/AnA04S06LdapAuthentication>

From source file org.fao.geonet.kernel.security.ecas.ECasAuthenticationProvider.java

/**
 * An {@link AuthenticationProvider} implementation that integrates with JA-SIG
 * Central Authentication Service (CAS).
 * <p>
 * This <code>AuthenticationProvider</code> is capable of validating
 * {@link UsernamePasswordAuthenticationToken} requests which contain a

From source file org.apache.syncope.core.misc.security.SyncopeAuthenticationProvider.java

@Configurable
public class SyncopeAuthenticationProvider implements AuthenticationProvider {

    /**
     * Logger.
     */

From source file info.raack.appliancelabeler.security.OAuthAutomaticAuthenticationProvider.java

@Component("oAuthAutomaticAuthenticationProvider")
public class OAuthAutomaticAuthenticationProvider implements AuthenticationProvider {

    public Authentication authenticate(Authentication authentication) throws AuthenticationException {
        if (!supports(authentication.getClass())) {
            return null;

From source file org.appverse.web.framework.backend.frontfacade.rest.authentication.JWSAuthenticationProvider.java

/**
 * JWS AuthenticationProvider
 *
 *
 *   * certificatePath a path to server public certificate.
 *   * defaultRoles a comma separated string containing the roles

From source file com.kabiliravi.kaman.web.AuthenticationProviderImpl.java

/**
 *
 * @author kabi
 */
public class AuthenticationProviderImpl implements AuthenticationProvider {

From source file org.opendaylight.controller.usermanager.internal.UserManagerImpl.java

/**
 * The internal implementation of the User Manager.
 */
public class UserManagerImpl implements IUserManager, IObjectReader, IConfigurationAware,
        ICacheUpdateAware<Long, String>, CommandProvider, AuthenticationProvider {
    private static final Logger logger = LoggerFactory.getLogger(UserManagerImpl.class);

From source file org.opendaylight.controller.usermanager.internal.UserManager.java

/**
 * The internal implementation of the User Manager.
 */
public class UserManager
        implements IUserManager, IObjectReader, IConfigurationAware, CommandProvider, AuthenticationProvider {
    private static final Logger logger = LoggerFactory.getLogger(UserManager.class);