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 gateway.auth.PiazzaBasicAuthenticationProvider.java

/**
 * Custom Authentication Provider to authentication the provided username and credential in the 'Authorization' request
 * header field.
 * 
 * @author Russell.Orf
 * 

From source file com.ar.dev.tierra.api.config.security.CustomAuthenticationProvider.java

/**
 *
 * @author PauloGaldo
 */
@Component
public class CustomAuthenticationProvider implements AuthenticationProvider {

From source file com.wisemapping.security.AuthenticationProvider.java

public class AuthenticationProvider implements org.springframework.security.authentication.AuthenticationProvider {
    private UserDetailsService userDetailsService;
    private PasswordEncoder encoder;

    @Override()
    public Authentication authenticate(@NotNull final Authentication auth) throws AuthenticationException {

From source file com.seajas.search.utilities.spring.security.service.ExtendedAuthenticationProvider.java

/**
 * Extended authentication provider for internal authentication purposes.
 * 
 * @author Jasper van Veghel <jasper@seajas.com>
 */
public class ExtendedAuthenticationProvider implements AuthenticationProvider {

From source file ar.com.zauber.commons.social.twitter.security.TwitterAuthenticationProvider.java

/**
 * {@link AuthenticationProvider} for Twitter OAuth.
 * 
 * @author Mariano Cortesi
 * @since Feb 3, 2010
 */

From source file eu.trentorise.smartcampus.ac.provider.filters.SpringAcProvider.java

/**
 * Filter to check authentication of user in web application
 * 
 * @author Viktor Pravdin <pravdin@disi.unitn.it>
 * @date Jun 5, 2012 2:36:31 PM
 */

From source file com.himanshu.poc.springbootsec.security.AuthenticationProviderImpl.java

@Component
public class AuthenticationProviderImpl implements AuthenticationProvider {

    private Logger logger = LoggerFactory.getLogger(getClass());

    @Autowired

From source file com.eazytec.webapp.filter.CustomAuthenticationProvider.java

public class CustomAuthenticationProvider implements AuthenticationProvider {

    @Autowired
    private UserService userService;
    @Autowired
    private ReflectionSaltSource saltSource;

From source file com.seyren.core.security.mongo.MongoAuthenticationProvider.java

@Component
public class MongoAuthenticationProvider implements AuthenticationProvider {
    private final PasswordEncoder passwordEncoder;
    private final SeyrenConfig seyrenConfig;
    private final UserStore userStore;

From source file waffle.spring.WindowsAuthenticationProvider.java

/**
 * A Waffle authentication provider for Spring-security.
 * 
 * @author dblock[at]dblock[dot]org
 */
public class WindowsAuthenticationProvider implements AuthenticationProvider {