org.infinispan.query.SecurityActions Maven / Gradle / Ivy
package org.infinispan.query;
import java.security.AccessController;
import java.security.PrivilegedAction;
import org.infinispan.AdvancedCache;
import org.infinispan.factories.ComponentRegistry;
import org.infinispan.security.AuthorizationManager;
import org.infinispan.security.Security;
/**
* SecurityActions for the org.infinispan.query package.
*
* Do not move. Do not change class and method visibility to avoid being called from other
* {@link java.security.CodeSource}s, thus granting privilege escalation to external code.
*
* @author Tristan Tarrant
* @since 7.0
*/
final class SecurityActions {
private SecurityActions() {
}
private static T doPrivileged(PrivilegedAction action) {
return System.getSecurityManager() != null ?
AccessController.doPrivileged(action) : Security.doPrivileged(action);
}
static AuthorizationManager getCacheAuthorizationManager(AdvancedCache, ?> cache) {
return doPrivileged(cache::getAuthorizationManager);
}
static ComponentRegistry getCacheComponentRegistry(AdvancedCache, ?> cache) {
return doPrivileged(cache::getComponentRegistry);
}
}