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