|
JSecurity | |||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use CacheException | |
|---|---|
| org.jsecurity.cache | Caching support used to enhance performance for any security operation. |
| org.jsecurity.cache.ehcache | Ehcache-based implementations of JSecurity's cache interfaces. |
| Uses of CacheException in org.jsecurity.cache |
|---|
| Methods in org.jsecurity.cache that throw CacheException | |
|---|---|
void |
HashtableCache.clear()
|
void |
Cache.clear()
Clear all entries from the cache. |
Object |
HashtableCache.get(Object key)
|
Object |
Cache.get(Object key)
Returns the Cached value stored under the specified key or
null if there is no Cache entry for that key. |
Cache |
CacheManager.getCache(String name)
Acquires the cache with the specified name. |
void |
HashtableCache.put(Object key,
Object value)
|
void |
Cache.put(Object key,
Object value)
Adds a Cache entry. |
void |
HashtableCache.remove(Object key)
|
void |
Cache.remove(Object key)
Remove the cache entry corresponding to the specified key. |
| Uses of CacheException in org.jsecurity.cache.ehcache |
|---|
| Methods in org.jsecurity.cache.ehcache that throw CacheException | |
|---|---|
void |
EhCache.clear()
Removes all elements in the cache, but leaves the cache in a useable state. |
Object |
EhCache.get(Object key)
Gets a value of an element which matches the given key. |
Cache |
EhCacheManager.getCache(String name)
Loads an existing EhCache from the cache manager, or starts a new cache if one is not found. |
void |
EhCacheManager.init()
Initializes this instance. |
void |
EhCache.put(Object key,
Object value)
Puts an object into the cache. |
void |
EhCache.remove(Object key)
Removes the element which matches the key. |
|
JSecurity | |||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||