站内搜索: 请输入搜索关键词
当前页面: 在线文档首页 > JDK 5 Documentation v1.2.2, Java 2 SDK 英文文档

Java Remote Method Invocation: 5 - Server Interfaces - JDK 5 Documentation v1.2.2, Java 2 SDK 英文文档

CONTENTS | PREV | NEXT Java Remote Method Invocation


5.7 The LoaderHandler Interface

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.



CONTENTS | PREV | NEXT
Copyright © 1997-1998 Sun Microsystems, Inc. All Rights Reserved.