Java SecurityManager .checkAccess (Thread t)

Syntax

SecurityManager.checkAccess(Thread t) has the following syntax.

public void checkAccess(Thread t)

Example

In the following code shows how to use SecurityManager.checkAccess(Thread t) method.


public class Main extends SecurityManager {
/*  ww w . j  a  v a2s  .c om*/
   // check access needs to overriden
   @Override
   public void checkAccess(Thread t) {
      throw new SecurityException("Not allowed.");
   }

   public static void main(String[] args) {
      System.setProperty("java.security.policy", "file:/C:/java.policy");

      Main sm = new Main();

      System.setSecurityManager(sm);

      // check if accepting access for thread is enabled
      sm.checkAccess(Thread.currentThread());

      System.out.println("Allowed!");
   }
}




















Home »
  Java Tutorial »
    java.lang »




Boolean
Byte
Character
Class
Double
Enum
Float
Integer
Long
Math
Number
Object
Package
Process
ProcessBuilder
Runnable
Runtime
SecurityManager
Short
StackTraceElement
StrictMath
String
StringBuffer
StringBuilder
System
Thread
ThreadGroup
ThreadLocal
Throwable