Package org.apache.cxf.xkms.cache
Interface XKMSClientCache
-
- All Superinterfaces:
AutoCloseable,Closeable
- All Known Implementing Classes:
EHCacheXKMSClientCache
public interface XKMSClientCache extends Closeable
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidclose()XKMSCacheTokenget(String key)Get an XKMSCacheToken from the cache matching the given key.voidput(String key, XKMSCacheToken cacheToken)Store an XKMSCacheToken in the Cache using the given key
-
-
-
Method Detail
-
put
void put(String key, XKMSCacheToken cacheToken)
Store an XKMSCacheToken in the Cache using the given key
-
get
XKMSCacheToken get(String key)
Get an XKMSCacheToken from the cache matching the given key. Returns null if there is no such XKMSCacheToken in the cache.
-
close
void close()
- Specified by:
closein interfaceAutoCloseable- Specified by:
closein interfaceCloseable
-
-