org.jenkinsci.plugins.cas.spring.security
Class CasUserDetailsService

java.lang.Object
  extended by org.springframework.security.cas.userdetails.AbstractCasAssertionUserDetailsService
      extended by org.jenkinsci.plugins.cas.spring.security.CasUserDetailsService
All Implemented Interfaces:
org.springframework.security.core.userdetails.AuthenticationUserDetailsService

public final class CasUserDetailsService
extends org.springframework.security.cas.userdetails.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.

Author:
Scott Battaglia, Fabien Crespel

Constructor Summary
CasUserDetailsService()
           
 
Method Summary
 String[] getAttributes()
          Get the attribute names used to extract granted authorities.
 String[] getDefaultAuthorities()
          Get default authorities to add to the user in any case.
 boolean isConvertToUpperCase()
          Converts the returned attribute values to uppercase values.
protected  org.springframework.security.core.userdetails.UserDetails loadUserDetails(org.jasig.cas.client.validation.Assertion assertion)
           
 void setAttributes(String[] attributes)
          Set the attribute names used to extract granted authorities.
 void setConvertToUpperCase(boolean convertToUpperCase)
          Converts the returned attribute values to uppercase values.
 void setDefaultAuthorities(String[] defaultAuthorities)
          Set default authorities to add to the user in any case.
 
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

CasUserDetailsService

public CasUserDetailsService()
Method Detail

loadUserDetails

protected org.springframework.security.core.userdetails.UserDetails loadUserDetails(org.jasig.cas.client.validation.Assertion assertion)
Specified by:
loadUserDetails in class org.springframework.security.cas.userdetails.AbstractCasAssertionUserDetailsService

getAttributes

public String[] getAttributes()
Get the attribute names used to extract granted authorities.

Returns:
the attributes

setAttributes

public void setAttributes(String[] attributes)
Set the attribute names used to extract granted authorities.

Parameters:
attributes - the attributes to set

isConvertToUpperCase

public boolean isConvertToUpperCase()
Converts the returned attribute values to uppercase values.

Returns:
true if it should convert, false otherwise.

setConvertToUpperCase

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

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

getDefaultAuthorities

public String[] getDefaultAuthorities()
Get default authorities to add to the user in any case.

Returns:
default authorities

setDefaultAuthorities

public void setDefaultAuthorities(String[] defaultAuthorities)
Set default authorities to add to the user in any case.

Parameters:
defaultAuthorities - default authorities


Copyright © 2004-2012. All Rights Reserved.