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 no.dusken.aranea.service.LoginDetailsService.java

public interface LoginDetailsService extends GenericService<LoginDetails>, UserDetailsManager {
    /**
     * Sets the users password without authenticaticing the logged in user.
     * @param user - the user that is reseted, with new password set.
     */
    public void resetPassword(LoginDetails user);

From source file com.healthcit.analytics.service.UserManager.java

@Service("userManager")
public class UserManager implements UserDetailsManager {

    @Autowired
    private UserDAO userDao;

From source file com.sitewhere.security.SitewhereUserDetailsService.java

/**
 * SiteWhere implementation of Spring security UserDetailsManager.
 * 
 * @author Derek
 */
public class SitewhereUserDetailsService implements UserDetailsManager {

From source file eionet.transfer.dao.UserManagementService.java

/**
 * Additional operations for Springs UserDetailsManager.
 */
public interface UserManagementService extends UserDetailsManager, GroupManager {

    /**

From source file utils.security.CustomChangePassword.java

/**
 *
 * @author sacramento
 */
public class CustomChangePassword extends JdbcDaoImpl implements UserDetailsManager {

From source file eionet.transfer.dao.UserManagementServiceJdbc.java

/**
 * Extends Spring's JDBC implementation to add a list of all users and accept users thart are not in the database.
 */
public class UserManagementServiceJdbc extends JdbcUserDetailsManager
        implements UserManagementService, UserDetailsManager, GroupManager {

From source file org.openbaton.nfvo.security.authentication.CustomUserDetailsService.java

@Component
public class CustomUserDetailsService implements UserDetailsService, CommandLineRunner, UserDetailsManager {

    @Autowired
    @Qualifier("inMemManager")
    private UserDetailsManager inMemManager;

From source file de.uni_koeln.spinfo.maalr.login.OpenIdDetailsManager.java

/**
 * User Details service for OpenID. If a new user logs in the first time,
 * a new entry will be inserted into the user database, and the new user
 * will get the role 'openid'. Firstname, lastname and email will be null,
 * as this information is not yet available. If a user logs in afterwards,
 * these properties will be taken from the database, as well as the 

From source file fr.xebia.springframework.security.core.userdetails.jdbc.ExtendedJdbcUserDetailsManager.java

/**
 * Extension of the {@link org.springframework.security.provisioning.JdbcUserDetailsManager} to add the '
 * <code>allowedRemoteAddresses</code>' (<code>varchar</code>) and '
 * <code>comments</code>' (<code>varchar</code>) columns in the '
 * <code>users</code>' table.
 *

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

/**
 * Non-persistent implementation of {@code UserDetailsManager} which is backed by an
 * in-memory map.
 * <p>
 * Mainly intended for testing and demonstration purposes, where a full blown persistent
 * system isn't required.