Where Am I? Class Hierarchy (JDK) All Classes (JDK) All Fields and Methods (JDK)

Interface java.rmi.server.LoaderHandler

public interface LoaderHandler


Variable Index

packagePrefix
Find loader handler package prefix: assumes that the implementation of the LoaderHandler class is located in the package defined by the prefix.

Method Index

getSecurityContext(ClassLoader)
Returns the security context of the given class loader (e.g., a URL)
loadClass(String)
Load class using java.rmi.server.codebase property.
loadClass(URL, String)
Load class from codebase URL specified.

Variables

packagePrefix
 public static final String packagePrefix
Find loader handler package prefix: assumes that the implementation of the LoaderHandler class is located in the package defined by the prefix.


Methods

loadClass
 public abstract Class loadClass(String name) throws MalformedURLException, ClassNotFoundException
Load class using java.rmi.server.codebase property.

Throws: ClassNotFoundException
if the class could not be found.
Throws: MalformedURLException
if the URL is malformed.
loadClass
 public abstract Class loadClass(URL codebase,
                                 String name) throws MalformedURLException, ClassNotFoundException
Load class from codebase URL specified.

Throws: ClassNotFoundException
if the class could not be found.
Throws: MalformedURLException
if the URL is malformed.
getSecurityContext
 public abstract Object getSecurityContext(ClassLoader loader)
Returns the security context of the given class loader (e.g., a URL)


Where Am I? Class Hierarchy (JDK) All Classes (JDK) All Fields and Methods (JDK)