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