Java tutorial
public class Main extends SecurityManager { // 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!"); } }