Example usage for org.springframework.security.web.authentication.preauth PreAuthenticatedGrantedAuthoritiesUserDetailsService subclass-usage

List of usage examples for org.springframework.security.web.authentication.preauth PreAuthenticatedGrantedAuthoritiesUserDetailsService subclass-usage

Introduction

In this page you can find the example usage for org.springframework.security.web.authentication.preauth PreAuthenticatedGrantedAuthoritiesUserDetailsService subclass-usage.

Usage

From source file nl.surfnet.coin.api.oauth.ClientMetaDataPreAuthenticatedGrantedAuthoritiesUserDetailsService.java

/**
 * {@link PreAuthenticatedGrantedAuthoritiesUserDetailsService} that create
 * UserDetails that compass the details of the Janus metadata
 * 
 */
public class ClientMetaDataPreAuthenticatedGrantedAuthoritiesUserDetailsService

From source file edu.wisc.portlet.hrs.security.HrsPreAuthenticatedGrantedAuthoritiesUserDetailsService.java

/**
 * Uses the primary attribute retrieved by {@link PrimaryAttributePortletPreAuthenticatedAuthenticationDetailsSource}
 * to look up the HRS roles for the user
 * 
 * @author Eric Dalquist
 */

From source file org.jasig.portlet.blackboardvcportlet.security.ConferenceUserPreAuthenticatedGrantedAuthoritiesUserDetailsService.java

public class ConferenceUserPreAuthenticatedGrantedAuthoritiesUserDetailsService
        extends PreAuthenticatedGrantedAuthoritiesUserDetailsService {
    private static final Pattern ATTRIBUTE_NAME_SEPERATOR = Pattern.compile(",");

    private ConferenceUserDao conferenceUserDao;
    private TransactionOperations transactionOperations;