Beispiel #1
0
 public boolean contains(Object cacheKey) {
   return _cache.contains(cacheKey);
 }
Beispiel #2
0
 public synchronized void clear() {
   _cache.clear();
 }
Beispiel #3
0
 public synchronized Object remove(Object cacheKey) {
   return _cache.remove(cacheKey);
 }
Beispiel #4
0
 public long getCachedSize() {
   return _cache.getCachedSize();
 }
Beispiel #5
0
 public Object getCachedData(Object cacheKey) {
   return _cache.getCachedData(cacheKey);
 }
Beispiel #6
0
 public synchronized void cache(Object cacheKey, Object obj) {
   _cache.cache(cacheKey, obj);
 }