2003-03-31 Michael Koch <konqueror@gmx.de>
* java/rmi/server/LoaderHandler.java (loadClass): Deprecated. (getSecurityContext): Deprecated. * java/rmi/server/LogStream.java (getDefaultStream): Deprecated. (setDefaultStream): Deprecated. (getOutputStream): Deprecated. (setOutputStream): Deprecated. (write): Deprecated. (toString): Deprecated. (parseLevel): Deprecated. * java/rmi/server/Operation.java (Operation): Deprecated. (getOperation): Deprecated. (toString): Deprecated. * java/rmi/server/RemoteCall.java (getOutputStream): Deprecated. (releaseOutputStream): Deprecated. (getInputStream): Deprecated. (releaseInputStream): Deprecated. (getResultStream): Deprecated. (executeCall): Deprecated. (done): Deprecated. * java/rmi/server/RemoteRef.java (invoke): Deprecated. (newCall): Deprecated. (done): Deprecated. * java/rmi/server/RemoteStub.java (setRef): Deprecated. * java/rmi/server/Skeleton.java: No need to import java.lang.Exception explicitly. (dispatch): Deprecated. (getOperations): Deprecated. From-SVN: r65079
This commit is contained in:
parent
60c98fd611
commit
a1bda993d5
8 changed files with 117 additions and 1 deletions
|
@ -47,11 +47,20 @@ public interface LoaderHandler
|
|||
{
|
||||
public static final String packagePrefix = "";
|
||||
|
||||
/**
|
||||
* @deprecated
|
||||
*/
|
||||
public Class loadClass(String name)
|
||||
throws MalformedURLException, ClassNotFoundException;
|
||||
|
||||
/**
|
||||
* @deprecated
|
||||
*/
|
||||
public Class loadClass(URL codebase, String name)
|
||||
throws MalformedURLException, ClassNotFoundException;
|
||||
|
||||
/**
|
||||
* @deprecated
|
||||
*/
|
||||
public Object getSecurityContext(ClassLoader loader);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue