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