Example usage for org.springframework.security.core.userdetails UserDetailsService interface-usage

List of usage examples for org.springframework.security.core.userdetails UserDetailsService interface-usage

Introduction

In this page you can find the example usage for org.springframework.security.core.userdetails UserDetailsService interface-usage.

Usage

From source file de.forsthaus.policy.model.PolicyManager.java

/**
 * This class implements the spring-security UserDetailService Interface.<br>
 * It's been configured in the 'springSecurityContext.xml'.<br>
 * 
 * @author bbruhns
 * @author Stephan Gerth

From source file com.mysample.springbootsample.security.CustomUserDetailsService.java

@Service("customUserDetailsService")
public class CustomUserDetailsService implements UserDetailsService {

    @Autowired
    private UserRepository userRepository;

From source file com.ram.topup.business.service.authentication.impl.UserDetailsServiceImpl.java

/**
 * The Class UserDetailsServiceImpl.
 */
@Service("userDetailsService")
public class UserDetailsServiceImpl implements UserDetailsService {

From source file org.ng200.openolympus.services.OlympUserDetailsService.java

@Service
public class OlympUserDetailsService implements UserDetailsService {

    private static final Logger logger = LoggerFactory.getLogger(OlympUserDetailsService.class);
    @Autowired
    private UserRepository userRepository;

From source file com.sothawo.taboo2.Taboo2UserService.java

/**
 * Service to provide User details.
 *
 * @author P.J. Meisch (pj.meisch@sothawo.com).
 */
@Component

From source file com.nec.harvest.service.impl.UserDetailServiceImpl.java

/**
 * {@link UserDetailsService}
 * 
 * @author hungpd
 * 
 */

From source file org.orcid.core.security.OrcidUserDetailsService.java

/**
 * @author Declan Newman (declan) Date: 13/02/2012
 */
public class OrcidUserDetailsService implements UserDetailsService {

    @Resource

From source file com.juliuskrah.multipart.service.impl.UserDetailsServiceImpl.java

@Component
public class UserDetailsServiceImpl implements UserDetailsService {

    private final Logger log = LoggerFactory.getLogger(this.getClass());

    @Inject

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

/**
 * {@link UserDetailsService} that returns {@link DelegateCalendarAccountUserDetailsImpl}
 * instances.
 * 
 * Requires that a valid {@link CalendarAccountUserDetailsImpl} be in the
 * current {@link SecurityContext}.

From source file com.stephengream.simplecms.authentication.SimpleCmsUserDetailsService.java

/**
 * Class to integrate our user type with 
 * @author Stephen
 */
public class SimpleCmsUserDetailsService implements UserDetailsService, UserService {
    @Inject