*/
public Set<String> getRequiredScope()
{
if (scopeCache.containsKey(name))
{ // Cube name to requiredScopeKeys map
return new CaseInsensitiveSet(scopeCache.get(name)); // return modifiable copy (sorted order maintained)
}
synchronized (scopeCache)
{
if (scopeCache.containsKey(name))