org.acegisecurity.providers.x509
Interface X509UserCache
- All Known Implementing Classes:
- EhCacheBasedX509UserCache, NullX509UserCache
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: X509UserCache.java 1496 2006-05-23 13:38:33Z benalex $
- Author:
- Luke Taylor
getUserFromCache
UserDetails getUserFromCache(java.security.cert.X509Certificate userCertificate)
putUserInCache
void putUserInCache(java.security.cert.X509Certificate key,
UserDetails user)
removeUserFromCache
void removeUserFromCache(java.security.cert.X509Certificate key)
Copyright © 2004-2011 Interface21, Inc. All Rights Reserved.