public class CacheAttributesChecker extends AbstractCache
Modifier and Type | Field and Description |
---|---|
protected Cache |
cache |
name, ttl
Modifier | Constructor and Description |
---|---|
protected |
CacheAttributesChecker(CacheDescriptor desc) |
Modifier and Type | Method and Description |
---|---|
Serializable |
get(String key)
Get method to retrieve value from cache Must not raise exception if the key is null, but return null
|
Cache |
getCache() |
boolean |
hasEntry(String key)
Check if a given key is present inside the cache.
|
void |
invalidate(String key)
Invalidate the given key
|
void |
invalidateAll()
Invalidate all key-value stored in the cache
|
void |
put(String key,
Serializable value)
Put method to store a
Serializable value |
getName
protected CacheAttributesChecker(CacheDescriptor desc)
public Serializable get(String key)
Cache
key
- the string keySerializable
value, return null if the key does not exist or if the key is nullpublic void invalidate(String key)
Cache
public void invalidateAll()
Cache
public void put(String key, Serializable value)
Cache
Serializable
valuekey
- the string key, if null, the value will not be storedvalue
- the value to store, if null, the value will not be storedpublic boolean hasEntry(String key)
Cache
hasEntry
in interface Cache
hasEntry
in class AbstractCache
key
- the string keyCopyright © 2016 Nuxeo SA. All rights reserved.