May 2001
Intermediate to advanced
618 pages
20h 50m
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, java.net.URLClassLoader
|
Read now
Unlock full access