Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

abbot.script
Class AppletSecurityManager  view AppletSecurityManager download AppletSecurityManager.java

java.lang.Object
  extended byjava.lang.SecurityManager
      extended bysun.awt.AWTSecurityManager
          extended bysun.applet.AppletSecurity
              extended byabbot.script.AppletSecurityManager

public class AppletSecurityManager
extends sun.applet.AppletSecurity

This security manager extends sun.applet.AppletSecurity b/c AppletViewer does some casts that assume that is the only security manager that will be installed.


Field Summary
 
Fields inherited from class sun.applet.AppletSecurity
 
Fields inherited from class java.lang.SecurityManager
inCheck
 
Constructor Summary
AppletSecurityManager()
           
 
Method Summary
 void checkPermission(java.security.Permission perm)
          Check if the current thread is allowed to perform an operation that requires the specified Permission.
 void checkPermission(java.security.Permission perm, java.lang.Object context)
          Check if the current thread is allowed to perform an operation that requires the specified Permission.
 
Methods inherited from class sun.applet.AppletSecurity
checkAccess, checkAccess, checkAwtEventQueueAccess, checkPackageAccess, getAppContext, getThreadGroup, inThreadGroup, inThreadGroup, reset
 
Methods inherited from class java.lang.SecurityManager
checkAccept, checkConnect, checkConnect, checkCreateClassLoader, checkDelete, checkExec, checkExit, checkLink, checkListen, checkMemberAccess, checkMulticast, checkMulticast, checkPackageDefinition, checkPrintJobAccess, checkPropertiesAccess, checkPropertyAccess, checkRead, checkRead, checkRead, checkSecurityAccess, checkSetFactory, checkSystemClipboardAccess, checkTopLevelWindow, checkWrite, checkWrite, classDepth, classLoaderDepth, currentClassLoader, currentLoadedClass, getClassContext, getInCheck, getSecurityContext, inClass, inClassLoader
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

AppletSecurityManager

public AppletSecurityManager()
Method Detail

checkPermission

public void checkPermission(java.security.Permission perm,
                            java.lang.Object context)
Description copied from class: java.lang.SecurityManager
Check if the current thread is allowed to perform an operation that requires the specified Permission. This is done in a context previously returned by getSecurityContext(). The default implementation expects context to be an AccessControlContext, and it calls AccessControlContext.checkPermission(perm).


checkPermission

public void checkPermission(java.security.Permission perm)
Description copied from class: java.lang.SecurityManager
Check if the current thread is allowed to perform an operation that requires the specified Permission. This defaults to AccessController.checkPermission.