Example usage for java.lang SecurityManager getClassContext

List of usage examples for java.lang SecurityManager getClassContext

Introduction

In this page you can find the example usage for java.lang SecurityManager getClassContext.

Prototype

protected native Class<?>[] getClassContext();

Source Link

Document

Returns the current execution stack as an array of classes.

Usage

From source file:Main.java

public static void main(String[] args) {

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

    SecurityManager sm = new Main();

    System.setSecurityManager(sm);

    Class[] con = sm.getClassContext();

    for (int i = 0; i < con.length; i++) {
        System.out.println(con[i]);
    }//from  ww  w  .  j av  a 2  s .  c  om
}