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

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

Introduction

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

Usage

From source file abid.password.springmvc.MutablePasswordAuthenticationProvider.java

public class MutablePasswordAuthenticationProvider extends AbstractUserDetailsAuthenticationProvider {

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

    private UserService userService;

From source file nc.noumea.mairie.appock.core.security.MockAuthenticationProvider.java

public class MockAuthenticationProvider extends AbstractUserDetailsAuthenticationProvider {

    /** Service utilisateur */
    @Autowired
    private AppUserService appUserService;

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 com.mothsoft.alexis.web.security.AlexisWebAuthenticationProvider.java

public class AlexisWebAuthenticationProvider extends AbstractUserDetailsAuthenticationProvider {

    private UserDetailsService userDetailsService;
    private UserDao userDao;
    private PasswordEncoder passwordEncoder;
    private PlatformTransactionManager transactionManager;

From source file com.rln.acme.security.MongoDBAuthenticationProvider.java

@Service
public class MongoDBAuthenticationProvider extends AbstractUserDetailsAuthenticationProvider {

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

    @Autowired

From source file org.cloudfoundry.tools.security.CloudFoundryAuthenticationProvider.java

/**
 * Spring Security {@link AuthenticationProvider} that authenticated using the active cloud foundry users credentials.
 * 
 * @author Phillip Webb
 */
public class CloudFoundryAuthenticationProvider extends AbstractUserDetailsAuthenticationProvider {

From source file com.yuchengtech.mobile.console.service.security.DaoAuthenticationProvider.java

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

From source file com.rockagen.gnext.service.spring.security.extension.ExAuthenticationProvider.java

/**
 * An {@link org.springframework.security.authentication.AuthenticationProvider} implementation that retrieves user details from a {@link org.springframework.security.core.userdetails.UserDetailsService}.
 *
 * @author ra
 * @since JDK1.8
 */

From source file fr.mycellar.interfaces.web.security.MyCellarAuthenticationProvider.java

/**
 * @author speralta
 */
@Named
@Singleton
public class MyCellarAuthenticationProvider extends AbstractUserDetailsAuthenticationProvider {

From source file in.mycp.service.MycpAuthService.java

/**
 * 
 * @author Charudath Doddanakatte
 * @author cgowdas@gmail.com
 *
 */