Interface AuthenticationCache
-
- All Known Implementing Classes:
GuavaAuthenticationCache
public interface AuthenticationCacheCache forAuthenticationobjects.- Author:
- avasquez
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AuthenticationgetAuthentication(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 Detail
-
getAuthentication
Authentication getAuthentication(String ticket)
Returns the cached authentication for the given ticket.
-
putAuthentication
void putAuthentication(Authentication authentication)
Puts the specified authentication in the cache.
-
removeAuthentication
void removeAuthentication(String ticket)
Removes the authentication associated to the given ticket from the cache.
-
-