Example usage for org.springframework.security.ldap.authentication LdapAuthenticationProvider setAuthoritiesMapper

List of usage examples for org.springframework.security.ldap.authentication LdapAuthenticationProvider setAuthoritiesMapper

Introduction

In this page you can find the example usage for org.springframework.security.ldap.authentication LdapAuthenticationProvider setAuthoritiesMapper.

Prototype

public void setAuthoritiesMapper(GrantedAuthoritiesMapper authoritiesMapper) 

Source Link

Usage

From source file:io.gravitee.management.idp.ldap.authentication.LdapAuthenticationProviderConfigurer.java

private LdapAuthenticationProvider build() throws Exception {
    BaseLdapPathContextSource contextSource = getContextSource();
    LdapAuthenticator ldapAuthenticator = createLdapAuthenticator(contextSource);

    LdapAuthoritiesPopulator authoritiesPopulator = getLdapAuthoritiesPopulator();

    LdapAuthenticationProvider ldapAuthenticationProvider = new LdapAuthenticationProviderProxy(
            ldapAuthenticator, authoritiesPopulator);
    SimpleAuthorityMapper simpleAuthorityMapper = new SimpleAuthorityMapper();
    simpleAuthorityMapper.setPrefix(rolePrefix);
    simpleAuthorityMapper.afterPropertiesSet();
    ldapAuthenticationProvider.setAuthoritiesMapper(simpleAuthorityMapper);
    if (userDetailsContextMapper != null) {
        ldapAuthenticationProvider.setUserDetailsContextMapper(userDetailsContextMapper);
    }//from ww  w.j  a va 2s  . co m
    return ldapAuthenticationProvider;
}