SecurityManager.getClassContext() has the following syntax.
protected Class [] getClassContext()
In the following code shows how to use SecurityManager.getClassContext() method.
/*from www .j a v a 2 s . co m*/ 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); Class[] con = sm.getClassContext(); for (int i = 0; i < con.length; i++) { System.out.println(con[i]); } } }
The code above generates the following result.