public interface IAccessTokenCache
For production applications it is recommended to use a distributed cache like Memcached or Redis, and to implement this interface to store and retrieve access tokens appropriately for your environment.
Modifier and Type | Method and Description |
---|---|
String |
get(String key)
Get the access token information from the cache.
|
void |
put(String key,
String value)
Store the access token information in the cache.
|