Example #1
0
 @Override
 public void updateEntry(String key, HttpCacheUpdateCallback callback)
     throws IOException, HttpCacheUpdateException {
   LOG.debug("updateEntry({},{})", key, callback);
   impl.updateEntry(key, callback);
 }
Example #2
0
 @Override
 public HttpCacheEntry getEntry(String key) throws IOException {
   LOG.debug("getEntry({})", key);
   return impl.getEntry(key);
 }
Example #3
0
 @Override
 public void removeEntry(String key) throws IOException {
   LOG.debug("removeEntry({})", key);
   impl.removeEntry(key);
 }
Example #4
0
 @Override
 public void putEntry(String key, HttpCacheEntry entry) throws IOException {
   LOG.debug("putEntry({},{})", key, entry);
   impl.putEntry(key, entry);
 }