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

org.infinispan.remoting.transport.jgroups.SecurityActions Maven / Gradle / Ivy

There is a newer version: 9.1.7.Final
Show newest version
package org.infinispan.remoting.transport.jgroups;

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

import org.infinispan.security.Security;
import org.infinispan.security.actions.GetSystemPropertyAsBooleanAction;
import org.infinispan.security.actions.GetSystemPropertyAsIntegerAction;

/**
 * Privileged actions for the 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 Dan Berindei
 * @since 8.2
 */
final class SecurityActions {
   private static  T doPrivileged(PrivilegedAction action) {
      if (System.getSecurityManager() != null) {
         return AccessController.doPrivileged(action);
      } else {
         return Security.doPrivileged(action);
      }
   }


   static boolean getBooleanProperty(String name) {
      return doPrivileged(new GetSystemPropertyAsBooleanAction(name));
   }

   static int getIntProperty(String name, int defaultValue) {
      return doPrivileged(new GetSystemPropertyAsIntegerAction(name, defaultValue));
   }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy