1 25 26 package org.objectweb.perseus.cache.lib; 27 28 import org.objectweb.perseus.cache.api.CacheEntryFactory; 29 import org.objectweb.perseus.cache.api.FixableCacheEntry; 30 31 36 public class BasicCacheEntryFactory implements CacheEntryFactory { 37 38 public FixableCacheEntry create(Object id, Object obj) { 39 return new BasicReplaceableCacheEntry(id, obj); 40 } 41 } 42 | Popular Tags |