Example usage for org.springframework.security.provisioning JdbcUserDetailsManager subclass-usage

List of usage examples for org.springframework.security.provisioning JdbcUserDetailsManager subclass-usage

Introduction

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

Usage

From source file de.tudarmstadt.ukp.clarin.webanno.webapp.security.OverridableUserDetailsManager.java

public class OverridableUserDetailsManager extends JdbcUserDetailsManager {
    private final Log log = LogFactory.getLog(getClass());

    @Override
    protected List<GrantedAuthority> loadUserAuthorities(String aUsername) {
        List<GrantedAuthority> authorities = super.loadUserAuthorities(aUsername);

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 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.
 *