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 sequrity.LoginService.java

/**
 *
 * @author admin
 */
@Service
@PersistenceContext(name = "ime", unitName = "OfficehoursManagment-ejbPU")

From source file architecture.user.security.spring.userdetails.ExternalUserDetailsService.java

public class ExternalUserDetailsService implements UserDetailsService, EventSource {

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

    private EventPublisher eventPublisher;

From source file io.github.proxyprint.kitchen.models.repositories.UserService.java

/**
 *
 * @author josesousa
 */
@Service
public class UserService implements UserDetailsService {

From source file io.spring.springoverflow.service.SpringOverflowUserDetailsService.java

/**
 * @author Michael Minella
 */
public class SpringOverflowUserDetailsService implements UserDetailsService {

    private UserRepository userRepository;

From source file org.kuali.mobility.mdot.userdetails.MobileUserDetailsService.java

public class MobileUserDetailsService implements UserDetailsService {

    public UserDetails loadUserByUsername(String username) throws UsernameNotFoundException, DataAccessException {
        List<GrantedAuthorityImpl> list = new ArrayList<GrantedAuthorityImpl>();
        list.add(new GrantedAuthorityImpl("ROLE_USER"));
        UserDetails user = new User(username, "", true, true, true, true, list);

From source file com.mycompany.springrest.web.controller.UserLoginService.java

public class UserLoginService implements UserDetailsService {

    @Autowired
    UserDAO userDAO;

    @Autowired

From source file com.trenako.security.AccountDetailsService.java

/**
 * The concrete implementation for the service that allows
 * for retrieving a UserDetails object based on the email address.
 *
 * @author Carlo Micieli
 */

From source file org.darwinathome.server.persistence.UserService.java

/**
 * @author Gerald de Jong <geralddejong@gmail.com>
 */

public class UserService implements UserDetailsService {

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

/**
 *
 * @author PauloGaldo
 */
@Service
public class CustomUserDetailsService implements UserDetailsService {

From source file shiver.me.timbers.security.web.spring.RepositoryUserDetailsService.java

/**
 * @author Karl Bennett
 */
@Component
public class RepositoryUserDetailsService implements UserDetailsService {