All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.infinispan.manager.SecurityActions Maven / Gradle / Ivy

There is a newer version: 15.1.0.Dev04
Show newest version
package org.infinispan.manager;

import java.security.AccessController;
import java.security.PrivilegedAction;

import org.infinispan.Cache;
import org.infinispan.security.Security;
import org.infinispan.security.impl.SecureCacheImpl;

/**
 * SecurityActions for the org.infinispan.manager 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. * * @since 10.0 */ final class SecurityActions { private SecurityActions() { } private static T doPrivileged(PrivilegedAction action) { return System.getSecurityManager() != null ? AccessController.doPrivileged(action) : Security.doPrivileged(action); } static Cache getUnwrappedCache(Cache cache) { if (cache instanceof SecureCacheImpl) { return doPrivileged(((SecureCacheImpl) cache)::getDelegate); } else { return cache; } } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy