/* This is the RIDL version of a registry. This file is used only by RIDL_Naming */ package RIDL_Runtime; import java.rmi.*; public interface RIDL_RN extends java.rmi.Remote { public RIDL_Object lookup(String name) throws RemoteException; public void bind(String name, RIDL_Object r) throws RemoteException; public void unbind(String name) throws RemoteException; // public void rebind(String name, RIDL_Object obj) throws RemoteException; public String[] list() throws RemoteException; }