Copyright © 2001 Qusay H. Mahmoud
20
How does it work?
lHow does the Java interpreter’s SecurityManager actually work?
l
–public boolean XX(Type arg1) {
–   SecurityManager sm = System.getSecurityManager();
–   if(security != null) {
–     security.checkXX(arg1);
–   }
–}