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 com.katropine.services.CustomUserDetailsService.java

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

    @EJB(mappedName = "BackendUserDao")

From source file ro.nextreports.server.security.DatabaseExternalUsersService.java

/**
 * @author Decebal Suiu
 */
public class DatabaseExternalUsersService implements ExternalUsersService, UserDetailsService, InitializingBean {

    public static final String DEFAULT_USER_QUERY = "SELECT username, password FROM users WHERE username = ?";

From source file org.socialhistoryservices.security.MongoUserDetailService.java

/**
 * <h4>The Users collection</h4>
 * <p/>
 * This collection contains the login name, password and enabled status of the user.
 * Because we aim at the Spring Security container the authorities are prefixed with "ROLE_"
 * <p/>

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

/**
 * An extension for spring security {@link org.springframework.security.core.userdetails.jdbc.JdbcDaoImpl}
 * @author RA
 * @see org.springframework.security.core.userdetails.jdbc.JdbcDaoImpl
 */
public class BasicJdbcDaoImpl extends JdbcDaoSupport implements UserDetailsService {

From source file org.apdplat.module.security.service.UserDetailsServiceImpl.java

/**
 * ??
 * ?org.springframework.security.core.userdetails.UserDetailsService
 * UserDetails loadUserByUsername(String username) throws UsernameNotFoundException;
 * @author ??
 */

From source file org.apache.syncope.core.misc.security.SyncopeUserDetailsService.java

@Configurable
public class SyncopeUserDetailsService implements UserDetailsService {

    @Autowired
    protected UserDAO userDAO;

From source file com.mobileman.moments.core.security.UserSecurityService.java

@Service
public class UserSecurityService implements UserDetailsService {

    public static final String PASSWORD_VERIFIED_ID = "PasswordVerified:!@#$%^&*(){}";

    private static final String PASSWORD_PREFIX1 = "PasswordPrefix1";

From source file org.mskcc.cbio.portal.authentication.openID.PortalUserDetailsService.java

/**
 * Custom UserDetailsService which authenticates
 * OpenID user against backend cgds database.
 *
 * @author Benjamin Gross
 */

From source file org.mskcc.cbio.portal.authentication.aaf.PortalUserDetailsService.java

/**
 * Responsible for verifying that an Australian Access Federation (AAF) 
 * name has been registered in the portal database.
 * 
 * Implementation based on code in googleplus PortalUserDetailsService
 * 

From source file org.mskcc.cbio.portal.authentication.googleplus.PortalUserDetailsService.java

/**
 * Responsible for verifying that a social site user name has been registered in the
 * portal database For registered users, an instance of GoogleplusUserDetails is
 * completed and returned. Null is returned for non-registered users
 *
 * Implementation based on code in OpenIDUserDetailsService