diff options
Diffstat (limited to 'libjava/java/rmi/server/RemoteCall.java')
-rw-r--r-- | libjava/java/rmi/server/RemoteCall.java | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/libjava/java/rmi/server/RemoteCall.java b/libjava/java/rmi/server/RemoteCall.java index 7621152b688..bccbaf1be15 100644 --- a/libjava/java/rmi/server/RemoteCall.java +++ b/libjava/java/rmi/server/RemoteCall.java @@ -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; } |