Java Data Type Tutorial - Java SecurityManager .checkAwtEventQueueAccess ()








Syntax

SecurityManager.checkAwtEventQueueAccess() has the following syntax.

public void checkAwtEventQueueAccess()

Example

In the following code shows how to use SecurityManager.checkAwtEventQueueAccess() method.

public class Main {
/* w  ww .j a v  a 2 s.  com*/
   public static void main(String[] args) {

      System.setProperty("java.security.policy", "file:/C:/java.policy");

      SecurityManager sm = new SecurityManager();

      System.setSecurityManager(sm);

      // perform the check
      sm.checkAwtEventQueueAccess();


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