| CONTENTS | PREV | NEXT | Java Remote Method Invocation | 
package java.rmi.server;
public interface LoaderHandler {
    Class loadClass(String name)
	    throws MalformedURLException, ClassNotFoundException;
    Class loadClass(URL codebase,String name) 
		throws MalformedURLException, ClassNotFoundException;
	Object getSecurityContext(ClassLoader loader);
}
Note - The LoaderHandler interface is deprecated in JDK1.2.
The LoaderHandler interface was only used by the JDK1.1 internal RMI implementation.