Oops. Let's actually wire these guys up...

This commit is contained in:
Par Winzell
2009-01-25 00:16:09 +00:00
parent bbcf7c8607
commit 5a93e48e4d
@@ -174,19 +174,17 @@ public class OldEHCacheAdapter
public <T> CachedValue<T> lookup (String cacheId, Serializable key)
{
// TODO Auto-generated method stub
return null;
EHCacheBin<T> bin = getCache(cacheId);
return bin.lookup(key);
}
public void remove (String cacheId, Serializable key)
{
// TODO Auto-generated method stub
getCache(cacheId).remove(key);
}
public <T> void store (CacheCategory category, String cacheId, Serializable key, T value)
{
// TODO Auto-generated method stub
getCache(cacheId).store(key, value);
}
}