org.springframework.security.cas.userdetails
Class GrantedAuthorityFromAssertionAttributesUserDetailsService

java.lang.Object
  extended by org.springframework.security.cas.userdetails.AbstractCasAssertionUserDetailsService
      extended by org.springframework.security.cas.userdetails.GrantedAuthorityFromAssertionAttributesUserDetailsService
All Implemented Interfaces:
AuthenticationUserDetailsService

public final class GrantedAuthorityFromAssertionAttributesUserDetailsService
extends AbstractCasAssertionUserDetailsService

Populates the GrantedAuthoritys for a user by reading a list of attributes that were returned as part of the CAS response. Each attribute is read and each value of the attribute is turned into a GrantedAuthority. If the attribute has no value then its not added.

Since:
3.0
Version:
$Revision$ $Date$
Author:
Scott Battaglia

Constructor Summary
GrantedAuthorityFromAssertionAttributesUserDetailsService(String[] attributes)
           
 
Method Summary
protected  UserDetails loadUserDetails(org.jasig.cas.client.validation.Assertion assertion)
          Protected template method for construct a UserDetails via the supplied CAS assertion.
 void setConvertToUpperCase(boolean convertToUpperCase)
          Converts the returned attribute values to uppercase values.
 
Methods inherited from class org.springframework.security.cas.userdetails.AbstractCasAssertionUserDetailsService
loadUserDetails
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

GrantedAuthorityFromAssertionAttributesUserDetailsService

public GrantedAuthorityFromAssertionAttributesUserDetailsService(String[] attributes)
Method Detail

loadUserDetails

protected UserDetails loadUserDetails(org.jasig.cas.client.validation.Assertion assertion)
Description copied from class: AbstractCasAssertionUserDetailsService
Protected template method for construct a UserDetails via the supplied CAS assertion.

Specified by:
loadUserDetails in class AbstractCasAssertionUserDetailsService
Parameters:
assertion - the assertion to use to construct the new UserDetails. CANNOT be NULL.
Returns:
the newly constructed UserDetails.

setConvertToUpperCase

public void setConvertToUpperCase(boolean convertToUpperCase)
Converts the returned attribute values to uppercase values.

Parameters:
convertToUpperCase - true if it should convert, false otherwise.


Copyright © 2004-2009 SpringSource, Inc. All Rights Reserved.