org.infinispan.security.actions.GetCacheGlobalComponentRegistryAction Maven / Gradle / Ivy
package org.infinispan.security.actions;
import org.infinispan.AdvancedCache;
import org.infinispan.factories.GlobalComponentRegistry;
/**
* GetCacheGlobalComponentRegistryAction.
*
* @author Tristan Tarrant
* @since 7.0
*/
public class GetCacheGlobalComponentRegistryAction extends AbstractAdvancedCacheAction {
public GetCacheGlobalComponentRegistryAction(AdvancedCache, ?> cache) {
super(cache);
}
@Override
public GlobalComponentRegistry run() {
return cache.getCacheManager().getGlobalComponentRegistry();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy