SecurityManager.checkSetFactory() has the following syntax.
public void checkSetFactory()
In the following code shows how to use SecurityManager.checkSetFactory() method.
// w w w.j av a 2 s . c om public class Main extends SecurityManager { public static void main(String[] args) { System.setProperty("java.security.policy", "file:/C:/java.policy"); Main sm = new Main(); System.setSecurityManager(sm); sm.checkSetFactory(); System.out.println("Allowed!"); } }