May 1998
Intermediate to advanced
469 pages
14h 57m
English
Class java.security.SecureClassLoader
A secure class loader is a class loader that is able to associate code sources (and hence protection domains) with the classes that it loads (classes loaded by a traditional class loader have a default, null protection domain). All new class loaders are expected to extend this class.
public class java.security.SecureClassLoader
extends java.lang.ClassLoader {
// Constructors
protected SecureClassLoader();
protected SecureClassLoader(ClassLoader);
// Protected Instance Methods
protected final Class defineClass(String, byte[], int, int,
CodeSource);
protected PermissionCollection getPermissions(CodeSource);
}
ClassLoader, CodeSource, ProtectionDomain