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 org.jbb.members.impl.security.DefaultUserDetailsService.java

@Slf4j
@Service("userDetailsService")
@RequiredArgsConstructor
public class DefaultUserDetailsService implements UserDetailsService {

    private final MemberService memberService;

From source file br.eti.danielcamargo.backend.common.core.business.UsuarioService.java

/**
 *
 * @author Daniel
 */
@Service
public class UsuarioService implements UserDetailsService {

From source file org.mitre.provenance.openid.OpenID2UserDetailsService.java

/**
 * UserDetailsService implementation for use with OpenID 2.0. This will allow all 
 * OpenID-authenticated users to get in to the application. 
 * 
 * @author Amanda Anganes
 *

From source file org.openvpms.component.business.service.security.memory.InMemoryUserDetailsService.java

/**
 * This is an in-memory user details manager, which is primarily useful for
 * testing the authorization.
 *
 * @author   <a href="mailto:support@openvpms.org">OpenVPMS Team</a>
 * @version  $LastChangedDate$

From source file com.jiwhiz.domain.account.UserAccountService.java

/**
 * Domain Service interface for user administration. It also extends SocialUserDetailsService,
 * and UserDetailsService.
 * 
 * @author Yuan Ji
 *

From source file com.appspot.potlachkk.repository.PotlachUserDetailsService.java

@Component
public class PotlachUserDetailsService implements UserDetailsService {

    @Autowired
    private UserRepository users;

From source file com.sapito.config.UserDetailsServer.java

/**
 *
 * @author giovanni
 */
@Service("userDetailsService")
public class UserDetailsServer implements UserDetailsService {

From source file com.example.server.user.CustomUserDetailsService.java

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

From source file com.qpark.eip.core.spring.security.EipUserDetailsService.java

/**
 * Provides user details from the {@link EipUserProvider} to the
 * {@link UserDetailsService} of spring.
 * 
 * @author bhausen
 */

From source file co.edu.utb.softeng.springtodos.service.security.MyUserDetailsService.java

/**
 *
 * @author william
 */

@Service("userDetailsService")