Example usage for org.springframework.security.provisioning UserDetailsManager interface-usage

List of usage examples for org.springframework.security.provisioning UserDetailsManager interface-usage

Introduction

In this page you can find the example usage for org.springframework.security.provisioning UserDetailsManager interface-usage.

Usage

From source file rusch.megan6server.TextFileAuthentication.java

/**An implementation to deal with user details. Conform with the needs of the Spring framework
 * 
 * @author Hans-Joachim Ruscheweyh
 * 3:34:00 PM - Nov 7, 2014
 *
 */

From source file com.vivastream.security.oauth2.provider.DynamoDBUserDetailsManager.java

/**
 * Service for saving/loading UserDetails from DynamoDB
 *
 * @author Zac Balson
 */
public class DynamoDBUserDetailsManager implements UserDetailsManager {

From source file org.shredzone.cilla.service.security.CillaUserDetailsManager.java

/**
 * An {@link UserDetailsManager} implementation that uses Cilla's user database for
 * authentication.
 *
 * @author Richard "Shred" Krber
 */

From source file org.apache.kylin.rest.service.LegacyUserService.java

/**
 */
//@Component("userService")
@Deprecated
public class LegacyUserService implements UserDetailsManager {

From source file org.apache.kylin.rest.service.UserService.java

/**
 */
@Component("userService")
public class UserService implements UserDetailsManager {

    private static final String PWD_PREFIX = "PWD:";

From source file org.springframework.security.provisioning.JdbcUserDetailsManager.java

/**
 * Jdbc user management service, based on the same table structure as its parent class,
 * <tt>JdbcDaoImpl</tt>.
 * <p>
 * Provides CRUD operations for both users and groups. Note that if the
 * {@link #setEnableAuthorities(boolean) enableAuthorities} property is set to false,

From source file org.springframework.security.ldap.userdetails.LdapUserDetailsManager.java

/**
 * An Ldap implementation of UserDetailsManager.
 * <p>
 * It is designed around a standard setup where users and groups/roles are stored under
 * separate contexts, defined by the "userDnBase" and "groupSearchBase" properties
 * respectively.

From source file org.fao.geonet.kernel.security.ldap.LdapUserDetailsManager.java

/**
 * Made this class because of the stupid implementation of {@link org.springframework.security.ldap.userdetails.LdapUserDetailsManager#setGroupMemberAttributeName(String)}
 *
 * @author delawen
 */
public class LdapUserDetailsManager implements UserDetailsManager {