* @param cacheName Name that will be used when creating attributes.
* @return A cache.
*/
public ICache getCache( String cacheName )
{
IIndexedDiskCacheAttributes cacheAttributes =
( IIndexedDiskCacheAttributes ) defaultCacheAttributes.copy();
cacheAttributes.setCacheName( cacheName );
return getCache( cacheAttributes );
}