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 com.evolveum.midpoint.web.security.MidPointAuthenticationProvider.java

/**
 * @author lazyman
 * @author Radovan Semancik
 */
public class MidPointAuthenticationProvider implements AuthenticationProvider {

From source file com.haulmont.restapi.auth.CubaUserAuthenticationProvider.java

public class CubaUserAuthenticationProvider implements AuthenticationProvider {

    protected static final String SESSION_ID_DETAILS_ATTRIBUTE = "sessionId";

    private static final Logger log = LoggerFactory.getLogger(CubaUserAuthenticationProvider.class);

From source file com.github.jens_meiss.blog.server.service.json.user.UserController.java

/**
 * Handles requests for the application user page.
 */
@RestController
public class UserController implements AuthenticationProvider, UserDetailsService {

From source file nl.strohalm.cyclos.webservices.rest.RestAuthenticationProvider.java

/**
 * An {@link AuthenticationProvider} which validates the username / password in Cyclos. WARN: Can't throw AuthenticationException cause it returns 401
 * UNAUTHORIZED and that is captured by the browser, pops up an authentication form and we don't want that. A 401 freezes the mobile app.
 * @author luis
 */
public class RestAuthenticationProvider implements AuthenticationProvider {

From source file org.springframework.security.ldap.authentication.LdapAuthenticationProvider.java

/**
 * An {@link org.springframework.security.authentication.AuthenticationProvider} implementation that authenticates
 * against an LDAP server.
 * <p>
 * There are many ways in which an LDAP directory can be configured so this class delegates most of
 * its responsibilities to two separate strategy interfaces, {@link LdapAuthenticator}

From source file fr.insalyon.creatis.vip.api.rest.security.apikey.ApikeyAuthenticationProvider.java

/**
 * Created by abonnet on 7/25/16.
 *
 * Authenticate a user with its api key.
 * Automaticaly taken into account by spring security by implementing {@link AuthenticationProvider}
 */

From source file ro.nextreports.server.security.ExternalAuthenticationProvider.java

/**
 * @author Decebal Suiu
 */
public abstract class ExternalAuthenticationProvider
        implements AuthenticationProvider, UserSynchronizer, InitializingBean {

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

/**
 * An {@link AuthenticationProvider} implementation that retrieves user details from a
 * JAAS login configuration.
 *
 * <p>
 * This <code>AuthenticationProvider</code> is capable of validating

From source file com.github.jens_meiss.blog.web.user.UserController.java

/**
 * Handles requests for the application user page.
 */
@Controller
public class UserController implements AuthenticationProvider, UserDetailsService {

From source file org.springframework.security.authentication.dao.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.
 *