|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
@Deprecated public interface RepositoryCache
Caches auxiliary data used during repository access like already processed metadata. The data in the cache is meant for exclusive consumption by the repository system and is opaque to the cache implementation.
Method Summary | |
---|---|
Object |
get(RepositoryRequest request,
Object key)
Deprecated. Gets the specified data from the cache. |
void |
put(RepositoryRequest request,
Object key,
Object data)
Deprecated. Puts the specified data into the cache. |
Method Detail |
---|
void put(RepositoryRequest request, Object key, Object data)
request
- The repository request from which this cache was retrieved, must not be null
.key
- The key to use associate the data with, must not be null
.data
- The data to store in the cache, may be null
.Object get(RepositoryRequest request, Object key)
request
- The repository request from which this cache was retrieved, must not be null
.key
- The key to use for lookup of the data, must not be null
.
null
if none was present in the cache.
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |