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