Spring Security Framework

org.springframework.security.providers.x509
Interface X509UserCache

All Known Implementing Classes:
EhCacheBasedX509UserCache, NullX509UserCache

Deprecated.

public interface X509UserCache

Provides a cache of UserDetails objects for the X509AuthenticationProvider.

Similar in function to the UserCache used by the Dao provider, but the cache is keyed with the user's certificate rather than the user name.

Version:
$Id$
Author:
Luke Taylor

Method Summary
 UserDetails getUserFromCache(X509Certificate userCertificate)
          Deprecated.  
 void putUserInCache(X509Certificate key, UserDetails user)
          Deprecated.  
 void removeUserFromCache(X509Certificate key)
          Deprecated.  
 

Method Detail

getUserFromCache

UserDetails getUserFromCache(X509Certificate userCertificate)
Deprecated. 

putUserInCache

void putUserInCache(X509Certificate key,
                    UserDetails user)
Deprecated. 

removeUserFromCache

void removeUserFromCache(X509Certificate key)
Deprecated. 

Spring Security Framework

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