blob: feb5a56a3fb761c9a17c507013a6e7d3fb94ad6e [file]
package org.apache.jcs.engine.behavior;
/**
* Inteface implemented by a specific cache.
*
* @author asmuts
* @created January 15, 2002
*/
public interface ICacheManager extends ICacheType
{
/**
* methods to get a cache region from a maanger
*
* @return The cache value
*/
public ICache getCache( String cacheName );
}
// end interface