|
Spring Security Framework | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface UserCache
Provides a cache of User
objects.
Implementations should provide appropriate methods to set their cache
parameters (eg time-to-live) and/or force removal of entities before their
normal expiration. These are not part of the UserCache
interface contract because they vary depending on the type of caching
system used (eg in-memory vs disk vs cluster vs hybrid).
Method Summary | |
---|---|
UserDetails |
getUserFromCache(String username)
Obtains a UserDetails from the cache. |
void |
putUserInCache(UserDetails user)
Places a UserDetails in the cache. |
void |
removeUserFromCache(String username)
Removes the specified user from the cache. |
Method Detail |
---|
UserDetails getUserFromCache(String username)
UserDetails
from the cache.
username
- the User.getUsername()
used to place the user in the cache
UserDetails
or null
if the user could not be found or if the
cache entry has expiredvoid putUserInCache(UserDetails user)
UserDetails
in the cache. The username
is the key used to subsequently
retrieve the UserDetails
.
user
- the fully populated UserDetails
to place in the cachevoid removeUserFromCache(String username)
username
is the key used to remove the user.
If the user is not found, the method should simply return (not thrown an exception).Some cache implementations may not support eviction from the cache, in which case they should provide appropriate behaviour to alter the user in either its documentation, via an exception, or through a log message.
username
- to be evicted from the cache
|
Spring Security Framework | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |