01: package org.shiftone.cache; 02: 03: /** 04: * @author <a href="mailto:jeff@shiftone.org">Jeff Drost</a> 05: * @version $Revision: 1.7 $ 06: */ 07: public interface CacheFactory { 08: Cache newInstance(String cacheName, long timeoutMilliSeconds, 09: int maxSize); 10: }