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

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

Introduction

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

Usage

From source file com.unito.repository.GoogleAuthenticationManager.java

/**
 *
 * @author SashaAlexandru
 */
public class GoogleAuthenticationManager implements AuthenticationManager {

From source file com.isalnikov.config.auth.UserAuthenticationManager.java

/**
 *
 * @author Igor Salnikov
 */
@Service
public class UserAuthenticationManager implements AuthenticationManager {

From source file com.isalnikov.config.SampleAuthenticationManager.java

/**
 *
 * @author Igor Salnikov
 */
public class SampleAuthenticationManager implements AuthenticationManager {

From source file ru.anr.base.facade.ejb.AbstractAuthenticationBean.java

/**
 * Abstract authentication manager EJB.
 *
 *
 * @author Alexey Romanchuk
 * @created Nov 28, 2014

From source file org.cloudfoundry.identity.uaa.authentication.manager.CompositeAuthenticationManager.java

public class CompositeAuthenticationManager implements AuthenticationManager {

    @Override
    public Authentication authenticate(Authentication authentication) throws AuthenticationException {
        Authentication a = SecurityContextHolder.getContext().getAuthentication();
        OAuth2Authentication oauth2Authentication = null;

From source file org.italiangrid.storm.webdav.authz.VOMSAuthenticationProvider.java

public class VOMSAuthenticationProvider extends PreAuthenticatedAuthenticationProvider
        implements AuthenticationManager {

    public VOMSAuthenticationProvider() {

        setThrowExceptionWhenTokenRejected(true);

From source file authentication.jwt.JwtAuthenticationManager.java

/**
 * Class comments go here...
 *
 * @author Roberto Perillo
 * @version 1.0 3 de out de 2016
 */

From source file nl.surfnet.coin.api.saml.SAMLAuthenticationManager.java

/**
 * SAMLAuthenticationManager.java
 *
 */
public class SAMLAuthenticationManager implements AuthenticationManager {

From source file org.cloudfoundry.identity.uaa.login.UsernamePasswordExtractingAuthenticationManager.java

import org.springframework.security.authentication.UsernamePasswordAuthenticationToken;
import org.springframework.security.core.Authentication;
import org.springframework.security.core.AuthenticationException;

/**
 * Authentication filter translating a generic Authentication into a

From source file org.elasticstore.server.service.impl.ElasticSearchAuthenticationManager.java

public class ElasticSearchAuthenticationManager implements AuthenticationManager {

    @Autowired
    private UserService userService;

    @Override