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:
Michael Koch 2003-03-31 06:49:33 +00:00 committed by Michael Koch
parent 60c98fd611
commit a1bda993d5
8 changed files with 117 additions and 1 deletions

View file

@ -48,18 +48,39 @@ import java.io.StreamCorruptedException;
*/
public interface RemoteCall
{
/**
* @deprecated
*/
public ObjectOutput getOutputStream () throws IOException;
/**
* @deprecated
*/
public void releaseOutputStream () throws IOException;
/**
* @deprecated
*/
public ObjectInput getInputStream () throws IOException;
/**
* @deprecated
*/
public void releaseInputStream () throws IOException;
/**
* @deprecated
*/
public ObjectOutput getResultStream (boolean success)
throws IOException, StreamCorruptedException;
/**
* @deprecated
*/
public void executeCall () throws Exception;
/**
* @deprecated
*/
public void done () throws IOException;
}