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 de.uni_koeln.spinfo.maalr.login.LoginManager.java

@Service("MaalrLoginManager")
public class LoginManager implements AuthenticationProvider {

    @Autowired
    private JaasAuthenticationProvider provider;

From source file org.mitre.openid.connect.client.OIDCAuthenticationProvider.java

/**
 * @author nemonik, Justin Richer
 * 
 */
public class OIDCAuthenticationProvider implements AuthenticationProvider {

From source file com.company.project.web.controller.service.CustomAuthenticationProvider.java

/**
 *
 * @author Romer
 */
@Service("customAuthenticationProvider")
public class CustomAuthenticationProvider implements AuthenticationProvider {

From source file nz.net.orcon.kanban.security.JcrAuthenticationProvider.java

public class JcrAuthenticationProvider implements AuthenticationProvider {

    private static final Logger logger = LoggerFactory.getLogger(JcrAuthenticationProvider.class);

    @Resource(name = "ocmFactory")
    OcmMapperFactory ocmFactory;

From source file com.gisnet.cancelacion.web.controller.AutenticarUsuario.java

/**
 *
 * @author marco-g8
 */
public class AutenticarUsuario implements AuthenticationProvider {

From source file org.web4thejob.security.ADAuthenticationProvider.java

/**
 * @author Veniamin Isaias
 * @since 1.0.0
 */
public class ADAuthenticationProvider implements AuthenticationProvider {
    private String url;

From source file org.springframework.security.web.authentication.preauth.PreAuthenticatedAuthenticationProvider.java

/**
 * <p>
 * Processes a pre-authenticated authentication request. The request will typically
 * originate from a
 * {@link org.springframework.security.web.authentication.preauth.AbstractPreAuthenticatedProcessingFilter}
 * subclass.

From source file py.una.pol.karaku.services.server.KarakuWSAuthenticationProvider.java

/**
 * Clase que provee autenticacin para usuarios.
 * 
 * <p>
 * Esta pensada para ser usada con un
 * {@link org.springframework.security.web.authentication.www.BasicAuthenticationEntryPoint}

From source file eu.freme.broker.security.DatabaseAuthenticationProvider.java

/**
 * @author Jan Nehring - jan.nehring@dfki.de
 */
public class DatabaseAuthenticationProvider implements AuthenticationProvider {

    @Autowired

From source file org.glassmaker.spring.oauth.OAuth2AuthenticationProvider.java

@Component("oAuth2AuthenticationProvider")
public class OAuth2AuthenticationProvider
        implements AuthenticationProvider, ApplicationListener<InteractiveAuthenticationSuccessEvent> {

    @Autowired
    protected UserDetailsService userDetailsService;