Example usage for org.springframework.security.authentication.dao DaoAuthenticationProvider subclass-usage

List of usage examples for org.springframework.security.authentication.dao DaoAuthenticationProvider subclass-usage

Introduction

In this page you can find the example usage for org.springframework.security.authentication.dao DaoAuthenticationProvider subclass-usage.

Usage

From source file org.callistasoftware.netcare.web.security.MobileAuthenticationProvider.java

/**
 * Authentication provider that checks username/passwords. This provider is
 * used in the scenario when the user has attempteed to access the /netcare/mobile
 * url.
 * 
 * This provider is used from {@link MobileAuthenticationManager}.

From source file fr.xebia.springframework.security.core.providers.ExtendedDaoAuthenticationProvider.java

/**
 * Verify that the {@link org.springframework.security.web.authentication.WebAuthenticationDetails#getRemoteAddress()} matches
 * on of the {@link ExtendedUser#getAllowedRemoteAddresses()} in the
 * {@link #additionalAuthenticationChecks(org.springframework.security.core.userdetails.UserDetails, org.springframework.security.authentication.UsernamePasswordAuthenticationToken)}
 * phase.
 *

From source file com.epam.reportportal.auth.BasicPasswordAuthenticationProvider.java

/**
 * Checks whether client have more auth errors than defined and throws exception if so
 *
 * @author <a href="mailto:andrei_varabyeu@epam.com">Andrei Varabyeu</a>
 */
class BasicPasswordAuthenticationProvider extends DaoAuthenticationProvider {

From source file fr.gael.dhus.service.CustomAuthProvider.java

public class CustomAuthProvider extends DaoAuthenticationProvider {
    private static Log logger = LogFactory.getLog(CustomAuthProvider.class);

    @Override
    protected void additionalAuthenticationChecks(UserDetails user_details,
            UsernamePasswordAuthenticationToken authentication) throws AuthenticationException {

From source file com.capinfo.common.security.authentication.dao.SecurityDaoAuthenticationProvider.java

/**
 * An {@link AuthenticationProvider} implementation that retrieves user details
 * from a {@link UserDetailsService}.
 * 
 * @author Ben Alex
 * @author Rob Winch

From source file org.tightblog.ui.security.MultiFactorAuthenticationProvider.java

@Component
public class MultiFactorAuthenticationProvider extends DaoAuthenticationProvider {

    private UserCredentialsRepository userCredentialsRepository;

    @Autowired

From source file architecture.user.security.spring.authentication.ExtendedAuthenticationProvider.java

public class ExtendedAuthenticationProvider extends DaoAuthenticationProvider {

    private Log log = LogFactory.getLog(getClass());

    protected UserManager userManager;

From source file org.jasig.schedassist.web.security.CustomLDAPAuthenticationProvider.java

/**
 * This subclass of {@link DaoAuthenticationProvider} is intended to provide
 * better integration for LDAP-sourced calendar accounts with Spring Security and
 * the {@link CalendarUserDetailsServiceImpl}.
 * 
 * Spring Security's LDAP support will only return their custom LDAP {@link UserDetails}

From source file es.osoco.grails.plugins.otp.authentication.OneTimePasswordAuthenticationProvider.java

/**
 * A subclass of {@link DaoAuthenticationProvider} that supports the {@link OneTimePasswordAuthenticationToken}
 * kind of token and checks the OTP validity delegating to the {@link OneTimePasswordService} as an additional
 * check.
 *
 * @author <a href="mailto:rafael.luque@osoco.es">Rafael Luque</a>

From source file org.medici.bia.security.BiaDaoAuthenticationProvider.java

/**
 * 
 * @author Lorenzo Pasquinelli (<a href=mailto:l.pasquinelli@gmail.com>l.pasquinelli@gmail.com</a>)
 * @author Matteo Doni (<a href=mailto:donimatteo@gmail.com>donimatteo@gmail.com</a>)
 *
 */