{
return null;
}
}
ICache auxCache;
String auxName;
while ( st.hasMoreTokens() )
{
auxName = st.nextToken().trim();
if ( auxName == null || auxName.equals( "," ) )
{
continue;
}
log.debug( "Parsing auxiliary named \"" + auxName + "\"." );
auxCache = parseAuxiliary( props, auxName, regName );
if ( auxCache != null )
{
auxList.add( auxCache );
}
}
ICache[] auxCaches = ( ICache[] ) auxList.toArray( new ICache[0] );
// GET COMPOSITECACHEATTRIBUTES
if ( cca == null )
{
cca = parseCompositeCacheAttributes( props, regName, regionPrefix );
}
IElementAttributes ea = parseElementAttributes( props, regName, regionPrefix );
ICache cache = null;
if ( regionPrefix.equals( SYSTEM_REGION_PREFIX ) )
{
//cache = ccMgr.createSystemCache( regName, auxCaches, cca, new ElementAttributes() );
cache = ccMgr.createSystemCache( regName, auxCaches, cca, ea );
}