Implementation of Content Handler registry. It maintains the set of currently registered handlers and updates to the file that holds the permanent set. The RegistryImpl class maintains an array of the current registrations that is initialized on first use.
Transient Registry interface implementation. It does not extend UnicastRemoteObject because all constructors of UnicastRemoteObject export itself, but we need a special export for objects with well-known ObjID numbers.
@author Mikhail A. Markov
@version $Revision: 1.1.2.3 $
A "registry" exists on every node that allows RMI connections to servers on that node. The registry on a particular node contains a transient database that maps names to remote objects. When the node boots, the registry database is empty. The names stored in the registry are pure and are not parsed. A service storing itself in the registry may want to prefix its name of the service by a package name (although not required), to reduce name collisions in the registry. The LocateRegistry class is used to obtain registry for different hosts.
@see java.rmi.registry.LocateRegistry
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.