if (container == null)
{
LOG.error("The top container could not be found");
return;
}
DistributedCacheManager dcm =
(DistributedCacheManager)container.getComponentInstanceOfType(DistributedCacheManager.class);
if (dcm == null)
{
LOG.error("The DistributedCacheManager could not be found at top container level, please configure it.");
return;
}
Cache<CacheKey, Object> cache = dcm.getCache(CACHE_NAME);
ISPNCacheWorkspaceStorageCache.updateTreePath(cache.getAdvancedCache().withFlags(Flag.SKIP_REMOTE_LOOKUP),
ownerId, (ItemData)value, prevRootPath, newRootPath, acl);
}