1 24 25 package org.objectweb.perseus; 26 27 import org.objectweb.perseus.cache.api.CacheEntryFactory; 28 import org.objectweb.perseus.cache.api.FixableCacheEntry; 29 30 31 public class CacheEntryFactoryTestImpl implements CacheEntryFactory { 32 public FixableCacheEntry create(Object id, Object obj) { 33 return new StatefullReplacebleCacheEntry(id, obj); 34 } 35 } 36 37 38 | Popular Tags |