You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by ml...@apache.org on 2006/08/10 07:09:48 UTC

svn commit: r430246 - /incubator/harmony/enhanced/classlib/trunk/modules/rmi/src/main/java/java/rmi/registry/RegistryHandler.java

Author: mloenko
Date: Wed Aug  9 22:09:48 2006
New Revision: 430246

URL: http://svn.apache.org/viewvc?rev=430246&view=rev
Log:
applied patch for HARMONY-1124
[classlib][rmi] RegistryHandler is not marked as deprecated

Modified:
    incubator/harmony/enhanced/classlib/trunk/modules/rmi/src/main/java/java/rmi/registry/RegistryHandler.java

Modified: incubator/harmony/enhanced/classlib/trunk/modules/rmi/src/main/java/java/rmi/registry/RegistryHandler.java
URL: http://svn.apache.org/viewvc/incubator/harmony/enhanced/classlib/trunk/modules/rmi/src/main/java/java/rmi/registry/RegistryHandler.java?rev=430246&r1=430245&r2=430246&view=diff
==============================================================================
--- incubator/harmony/enhanced/classlib/trunk/modules/rmi/src/main/java/java/rmi/registry/RegistryHandler.java (original)
+++ incubator/harmony/enhanced/classlib/trunk/modules/rmi/src/main/java/java/rmi/registry/RegistryHandler.java Wed Aug  9 22:09:48 2006
@@ -15,10 +15,6 @@
  * limitations under the License.
  */
 
-/**
- * @author  Mikhail A. Markov
- * @version $Revision: 1.3.4.1 $
- */
 package java.rmi.registry;
 
 import java.rmi.RemoteException;
@@ -26,21 +22,23 @@
 
 
 /**
- * @com.intel.drl.spec_ref
- *
- * @author  Mikhail A. Markov
- * @version $Revision: 1.3.4.1 $
+ * @deprecated This interface was used by previous versions of RMI. It should
+ *      not be accessed anymore. There is no replacement for this.
  */
+@Deprecated
 public interface RegistryHandler {
 
     /**
-     * @com.intel.drl.spec_ref
+     * @deprecated not used for registry implementations retrieval since
+     *      Java v1.2
      */
+    @Deprecated
     public Registry registryImpl(int port) throws RemoteException;
 
     /**
-     * @com.intel.drl.spec_ref
+     * @deprecated not used for registry stubs retrieval since Java v1.2
      */
+    @Deprecated
     public Registry registryStub(String host, int port)
             throws RemoteException, UnknownHostException;
 }