Interface AuthenticationCache
- All Known Implementing Classes:
GuavaAuthenticationCache
public interface AuthenticationCache
Cache for
Authentication objects.- Author:
- avasquez
-
Method Summary
Modifier and TypeMethodDescriptiongetAuthentication(String ticket) Returns the cached authentication for the given ticket.voidputAuthentication(Authentication authentication) Puts the specified authentication in the cache.voidremoveAuthentication(String ticket) Removes the authentication associated to the given ticket from the cache.
-
Method Details
-
getAuthentication
Returns the cached authentication for the given ticket. -
putAuthentication
Puts the specified authentication in the cache. -
removeAuthentication
Removes the authentication associated to the given ticket from the cache.
-