Class java.lang.SecurityManager (1.0)


public abstract class SecurityManager extends Object {
  // Protected Constructor
    protected SecurityManager( ) throws SecurityException;
  // Protected Instance Variables
    protected boolean inCheck;
  // Public Instance Methods
    public void checkAccept(String host, int port) throws SecurityException;
    public void checkAccess(Thread g) throws SecurityException;
    public void checkAccess(ThreadGroup g) throws SecurityException;
    public void checkAwtEventQueueAccess( );
    public void checkConnect(String host, int port) throws SecurityException;
    public void checkConnect(String host, int port, Object context);
    public void checkCreateClassLoader( ) throws SecurityException;
    public void checkDelete(String file) throws SecurityException;
    public void checkExec(String cmd) throws SecurityException;
    public void checkExit(int status) throws SecurityException;
    public void checkLink(String lib) throws SecurityException;
    public void checkListen(int port) throws SecurityException;
    public void checkMemberAccess(Class clazz, int which);
    public void checkMulticast(InetAddress maddr) throws SecurityException;
    public void checkMulticast(InetAddress maddr, byte ttl) throws SecurityException;
    public void checkPackageAccess(String pkg);
    public void checkPackageDefinition(String pkg);
    public void checkPrintJobAccess( );
    public void checkPropertiesAccess( ) throws SecurityException;
    public void checkPropertyAccess(String key) throws SecurityException;
    public void checkRead(FileDescriptor fd) throws SecurityException;
    public void checkRead(String file) throws SecurityException;
    public void checkRead(String file, Object context) throws SecurityException;
    public void checkSecurityAccess(String provider);
    public void checkSetFactory( );
    public void checkSystemClipboardAccess( );
    public boolean checkTopLevelWindow(Object window);
    public void checkWrite(FileDescriptor fd) throws SecurityException;
    public void checkWrite(String file) throws SecurityException;
    public boolean getInCheck( );
    public Object getSecurityContext( );
    public ThreadGroup getThreadGroup( );
  // Protected Instance Methods
    protected int classDepth(String name);
    protected int classLoaderDepth( );
    protected ClassLoader currentClassLoader( );
    protected Class currentLoadedClass( );
    protected Class[ ] getClassContext( );
    protected boolean inClass(String name);
    protected boolean inClassLoader( );
}