src/share/classes/java/rmi/server/RemoteCall.java

Print this page
rev 10048 : 8044740: Convert all JDK versions used in @since tag to 1.n[.n] in jdk repo
Reviewed-by:

@@ -35,11 +35,11 @@
  * (in conjunction with stubs and skeletons of remote objects) to carry out a
  * call to a remote object.  The <code>RemoteCall</code> interface is
  * deprecated because it is only used by deprecated methods of
  * <code>java.rmi.server.RemoteRef</code>.
  *
- * @since   JDK1.1
+ * @since   1.1
  * @author  Ann Wollrath
  * @author  Roger Riggs
  * @see     java.rmi.server.RemoteRef
  * @deprecated no replacement.
  */

@@ -50,22 +50,22 @@
      * Return the output stream the stub/skeleton should put arguments/results
      * into.
      *
      * @return output stream for arguments/results
      * @exception java.io.IOException if an I/O error occurs.
-     * @since JDK1.1
+     * @since 1.1
      * @deprecated no replacement
      */
     @Deprecated
     ObjectOutput getOutputStream()  throws IOException;
 
     /**
      * Release the output stream; in some transports this would release
      * the stream.
      *
      * @exception java.io.IOException if an I/O error occurs.
-     * @since JDK1.1
+     * @since 1.1
      * @deprecated no replacement
      */
     @Deprecated
     void releaseOutputStream()  throws IOException;
 

@@ -73,11 +73,11 @@
      * Get the InputStream that the stub/skeleton should get
      * results/arguments from.
      *
      * @return input stream for reading arguments/results
      * @exception java.io.IOException if an I/O error occurs.
-     * @since JDK1.1
+     * @since 1.1
      * @deprecated no replacement
      */
     @Deprecated
     ObjectInput getInputStream()  throws IOException;
 

@@ -85,11 +85,11 @@
     /**
      * Release the input stream. This would allow some transports to release
      * the channel early.
      *
      * @exception java.io.IOException if an I/O error occurs.
-     * @since JDK1.1
+     * @since 1.1
      * @deprecated no replacement
      */
     @Deprecated
     void releaseInputStream() throws IOException;
 

@@ -101,32 +101,32 @@
      * @param success If true, indicates normal return, else indicates
      * exceptional return.
      * @return output stream for writing call result
      * @exception java.io.IOException              if an I/O error occurs.
      * @exception java.io.StreamCorruptedException If already been called.
-     * @since JDK1.1
+     * @since 1.1
      * @deprecated no replacement
      */
     @Deprecated
     ObjectOutput getResultStream(boolean success) throws IOException,
         StreamCorruptedException;
 
     /**
      * Do whatever it takes to execute the call.
      *
      * @exception java.lang.Exception if a general exception occurs.
-     * @since JDK1.1
+     * @since 1.1
      * @deprecated no replacement
      */
     @Deprecated
     void executeCall() throws Exception;
 
     /**
      * Allow cleanup after the remote call has completed.
      *
      * @exception java.io.IOException if an I/O error occurs.
-     * @since JDK1.1
+     * @since 1.1
      * @deprecated no replacement
      */
     @Deprecated
     void done() throws IOException;
 }