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.pentaho.custom.authentication.CustomUserDetailsService.java

/**
 * A <code>UserDetailsService</code> that delegates to an {@link IUserRoleDao} to load users by username.
 * 
 */
public class CustomUserDetailsService implements UserDetailsService {

From source file org.smartplatforms.oauth2.SmartClientUserDetailsService.java

/**
 * Shim layer to convert a ClientDetails service into a UserDetails service
 * 
 * @author AANGANES
 *
 */

From source file org.josso.spring.security.JOSSOUserDetailsService.java

public class JOSSOUserDetailsService implements UserDetailsService {

    private static final Log logger = LogFactory.getLog(JOSSOUserDetailsService.class);

    private String _requester;

From source file com.castlemock.web.basis.model.user.service.UserDetailSecurityService.java

/**
 * The User Detail Security service is used upon authentication towards Castle Mock.
 * The class is responsible for locating users and match the incoming authentication credentials
 * towards the users.
 * @author Karl Dahlgren
 * @since 1.0

From source file net.maritimecloud.identityregistry.security.x509.X509HeaderUserDetailsService.java

@Service("userDetailsService")
public class X509HeaderUserDetailsService implements UserDetailsService {

    @Autowired
    private OrganizationService organizationService;
    @Autowired

From source file org.mitre.oauth2.service.impl.UriEncodedClientUserDetailsService.java

/**
 * Loads client details based on URI encoding as passed in from basic auth.
 * 
 *  Should only get called if non-encoded provider fails.
 * 
 * @author AANGANES

From source file com.github.jguaneri.notifications.service.impl.UserServiceImpl.java

/**
 * @author Joseph Guaneri
 * @version 1.0
 * @since 1.0
 */
@Service

From source file uk.org.rbc1b.roms.security.ROMSUserDetailsService.java

/**
 * Implement a user details service that allows us to store the user id.
 * @author oliver.elder.esq
 */
@Service("userDetailsService")
public class ROMSUserDetailsService implements UserDetailsService {

From source file org.opendatakit.security.spring.UserDetailsServiceImpl.java

/**
 * Implementation of a user details service that fetches data from the {@link RegisteredUsersTable}
 * to report on registered users.
 * 
 * @author mitchellsundt@gmail.com
 *

From source file de.atomspace.webapp.component.webuser.WebuserDetailsService.java

public class WebuserDetailsService implements UserDetailsService {
    private WebuserService webuserService;

    public WebuserDetailsService(WebuserService webuserService) {
        this.webuserService = webuserService;
    }