Example usage for org.springframework.security.ldap.userdetails LdapUserDetailsMapper subclass-usage

List of usage examples for org.springframework.security.ldap.userdetails LdapUserDetailsMapper subclass-usage

Introduction

In this page you can find the example usage for org.springframework.security.ldap.userdetails LdapUserDetailsMapper subclass-usage.

Usage

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

@Service("ldapManager")
public class LdapManager extends LdapUserDetailsMapper {

    @Autowired
    private UserService userService;

From source file piecework.ldap.CustomLdapUserDetailsMapper.java

/**
 * @author James Renfro
 */
public class CustomLdapUserDetailsMapper extends LdapUserDetailsMapper implements ContextMapper {

    private final Log logger = LogFactory.getLog(CustomLdapUserDetailsMapper.class);

From source file it.geosolutions.geostore.core.security.ldap.CustomAttributesLdapUserDetailsMapper.java

/**
 * Extends LdapUserDetailsMapper with the ability to map LDAP attributes to UserDetails attributes.
 * 
 * @author Mauro Bartolomeoli
 */
public class CustomAttributesLdapUserDetailsMapper extends LdapUserDetailsMapper {

From source file org.cloudfoundry.identity.uaa.ldap.ExtendedLdapUserMapper.java

public class ExtendedLdapUserMapper extends LdapUserDetailsMapper {
    private static final Log logger = LogFactory.getLog(ExtendedLdapUserMapper.class);
    public static final String SUBSTITUTE_MAIL_ATTR_NAME = "substitute-mail-attribute";
    private String mailAttributeName = "mail";
    private String mailSubstitute = null;
    private boolean mailSubstituteOverrides = false;

From source file org.cloudfoundry.identity.uaa.provider.ldap.ExtendedLdapUserMapper.java

public class ExtendedLdapUserMapper extends LdapUserDetailsMapper {
    private static final Log logger = LogFactory.getLog(ExtendedLdapUserMapper.class);
    public static final String SUBSTITUTE_MAIL_ATTR_NAME = "substitute-mail-attribute";
    private String mailAttributeName = "mail";
    private String givenNameAttributeName;
    private String familyNameAttributeName;

From source file org.sparkcommerce.openadmin.server.security.ldap.SparkAdminLdapUserDetailsMapper.java

/**
 * This is used to map LDAP principal and authorities into SC security model.
 * 
 * @author Kelly Tisdell
 *
 */

From source file org.broadleafcommerce.openadmin.server.security.ldap.BroadleafAdminLdapUserDetailsMapper.java

/**
 * This is used to map LDAP principal and authorities into BLC security model.
 * 
 * @author Kelly Tisdell
 *
 */

From source file com.healthcit.cacure.businessdelegates.LdapUserManager.java

public class LdapUserManager extends LdapUserDetailsMapper implements LdapUserSearch, LdapDatabaseManager {

    private static final Logger log = Logger.getLogger(LdapUserManager.class);
    private BaseLdapPathContextSource contextSource;

    @Autowired

From source file org.medici.bia.security.BiaLdapUserDetailsMapper.java

/**
 * This class extends LdapUserDetailsMapper to provide full support to our LDAP
 * server. The purpose of extending LdapUserDetailsMapper is very important beacause
 * with this configuration we can use Spring Security taglibs to print in Java
 * Server Pages not only username but every fields defined in BiaLdapUserDetailsImpl.
 * This class overriding follows logical model of extended class. 

From source file org.osiam.auth.login.ldap.OsiamLdapUserContextMapper.java

public class OsiamLdapUserContextMapper extends LdapUserDetailsMapper {

    private Map<String, String> scimLdapAttributes;

    public OsiamLdapUserContextMapper(Map<String, String> scimLdapAttributes) {
        this.scimLdapAttributes = scimLdapAttributes;