Spring Security Framework

org.springframework.security.providers.x509.populator
Class DaoX509AuthoritiesPopulator

java.lang.Object
  extended by org.springframework.security.providers.x509.populator.DaoX509AuthoritiesPopulator
All Implemented Interfaces:
InitializingBean, MessageSourceAware, X509AuthoritiesPopulator

Deprecated. This package is now deprecated. Use the X.509 authentication support in org.springframework.security.ui.preauth.x509 instead.

public class DaoX509AuthoritiesPopulator
extends Object
implements X509AuthoritiesPopulator, InitializingBean, MessageSourceAware

Populates the X509 authorities via an UserDetailsService.

Version:
$Id$
Author:
Luke Taylor

Field Summary
protected  MessageSourceAccessor messages
          Deprecated.  
 
Constructor Summary
DaoX509AuthoritiesPopulator()
          Deprecated.  
 
Method Summary
 void afterPropertiesSet()
          Deprecated.  
 UserDetails getUserDetails(X509Certificate clientCert)
          Deprecated. Obtains the granted authorities for the specified user.
 void setMessageSource(MessageSource messageSource)
          Deprecated.  
 void setSubjectDNRegex(String subjectDNRegex)
          Deprecated. Sets the regular expression which will by used to extract the user name from the certificate's Subject DN.
 void setUserDetailsService(UserDetailsService userDetailsService)
          Deprecated.  
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

messages

protected MessageSourceAccessor messages
Deprecated. 
Constructor Detail

DaoX509AuthoritiesPopulator

public DaoX509AuthoritiesPopulator()
Deprecated. 
Method Detail

afterPropertiesSet

public void afterPropertiesSet()
                        throws Exception
Deprecated. 
Specified by:
afterPropertiesSet in interface InitializingBean
Throws:
Exception

getUserDetails

public UserDetails getUserDetails(X509Certificate clientCert)
                           throws AuthenticationException
Deprecated. 
Description copied from interface: X509AuthoritiesPopulator
Obtains the granted authorities for the specified user.

May throw any AuthenticationException or return null if the authorities are unavailable.

Specified by:
getUserDetails in interface X509AuthoritiesPopulator
Parameters:
clientCert - the X.509 certificate supplied
Returns:
the details of the indicated user (at minimum the granted authorities and the username)
Throws:
AuthenticationException - if the user details are not available or the certificate isn't valid for the application's purpose.

setMessageSource

public void setMessageSource(MessageSource messageSource)
Deprecated. 
Specified by:
setMessageSource in interface MessageSourceAware

setSubjectDNRegex

public void setSubjectDNRegex(String subjectDNRegex)
Deprecated. 
Sets the regular expression which will by used to extract the user name from the certificate's Subject DN.

It should contain a single group; for example the default expression "CN=(.?)," matches the common name field. So "CN=Jimi Hendrix, OU=..." will give a user name of "Jimi Hendrix".

The matches are case insensitive. So "emailAddress=(.?)," will match "[email protected], CN=..." giving a user name "[email protected]"

Parameters:
subjectDNRegex - the regular expression to find in the subject

setUserDetailsService

public void setUserDetailsService(UserDetailsService userDetailsService)
Deprecated. 

Spring Security Framework

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