137138139140141142143144145
* * @return The cache value */ public ICache getCache( String cacheName ) { IHSQLCacheAttributes cattr = ( IHSQLCacheAttributes ) defaultCattr.copy(); cattr.setCacheName( cacheName ); return getCache( cattr ); }
828384858687888990
/** Description of the Method */ public ICache createCache( IAuxiliaryCacheAttributes iaca ) { IHSQLCacheAttributes idca = ( IHSQLCacheAttributes ) iaca; HSQLCacheManager dcm = HSQLCacheManager.getInstance( idca ); return dcm.getCache( idca ); }