Geen cache-versie.

Caching uitgeschakeld. Standaardinstelling voor deze pagina:ingeschakeld (code LNG204)
Als het scherm te langzaam is, kunt u de gebruikersmodus uitschakelen om de cacheversie te bekijken.
java.rmi.registry

Interface Registry

  • All Superinterfaces:
    Remote

    public interface Registry
    extends Remote
    Registry is a remote interface to a simple remote object registry that provides methods for storing and retrieving remote object references bound with arbitrary string names. The bind, unbind, and rebind methods are used to alter the name bindings in the registry, and the lookup and list methods are used to query the current name bindings.

    In its typical usage, a Registry enables RMI client bootstrapping: it provides a simple means for a client to obtain an initial reference to a remote object. Therefore, a registry's remote object implementation is typically exported with a well-known address, such as with a well-known ObjID and TCP port number (default is 1099).

    The LocateRegistry class provides a programmatic API for constructing a bootstrap reference to a Registry at a remote address (see the static getRegistry methods) and for creating and exporting a Registry in the current VM on a particular local address (see the static createRegistry methods).

    A Registry implementation may choose to restrict access to some or all of its methods (for example, methods that mutate the registry's bindings may be restricted to calls originating from the local host). If a Registry method chooses to deny access for a given invocation, its implementation may throw AccessException, which (because it extends RemoteException) will be wrapped in a ServerException when caught by a remote client.

    The names used for bindings in a Registry are pure strings, not parsed. A service which stores its remote reference in a Registry may wish to use a package name as a prefix in the name binding to reduce the likelihood of name collisions in the registry.

    Since:
    JDK1.1
    See Also:
    LocateRegistry
    • Field Detail

      • REGISTRY_PORT

        static final int REGISTRY_PORT
        Well known port for registry.
        See Also:
        Constant Field Values
    • Method Detail

      • lookup

        Remote lookup(String name)
                      throws RemoteException,
                             NotBoundException,
                             AccessException
        Returns the remote reference bound to the specified name in this registry.
        Parameters:
        name - the name for the remote reference to look up
        Returns:
        a reference to a remote object
        Throws:
        NotBoundException - if name is not currently bound
        RemoteException - if remote communication with the registry failed; if exception is a ServerException containing an AccessException, then the registry denies the caller access to perform this operation
        AccessException - if this registry is local and it denies the caller access to perform this operation
        NullPointerException - if name is null
      • bind

        void bind(String name,
                Remote obj)
                  throws RemoteException,
                         AlreadyBoundException,
                         AccessException
        Binds a remote reference to the specified name in this registry.
        Parameters:
        name - the name to associate with the remote reference
        obj - a reference to a remote object (usually a stub)
        Throws:
        AlreadyBoundException - if name is already bound
        RemoteException - if remote communication with the registry failed; if exception is a ServerException containing an AccessException, then the registry denies the caller access to perform this operation (if originating from a non-local host, for example)
        AccessException - if this registry is local and it denies the caller access to perform this operation
        NullPointerException - if name is null, or if obj is null
      • unbind

        void unbind(String name)
                    throws RemoteException,
                           NotBoundException,
                           AccessException
        Removes the binding for the specified name in this registry.
        Parameters:
        name - the name of the binding to remove
        Throws:
        NotBoundException - if name is not currently bound
        RemoteException - if remote communication with the registry failed; if exception is a ServerException containing an AccessException, then the registry denies the caller access to perform this operation (if originating from a non-local host, for example)
        AccessException - if this registry is local and it denies the caller access to perform this operation
        NullPointerException - if name is null
      • rebind

        void rebind(String name,
                  Remote obj)
                    throws RemoteException,
                           AccessException
        Replaces the binding for the specified name in this registry with the supplied remote reference. If there is an existing binding for the specified name, it is discarded.
        Parameters:
        name - the name to associate with the remote reference
        obj - a reference to a remote object (usually a stub)
        Throws:
        RemoteException - if remote communication with the registry failed; if exception is a ServerException containing an AccessException, then the registry denies the caller access to perform this operation (if originating from a non-local host, for example)
        AccessException - if this registry is local and it denies the caller access to perform this operation
        NullPointerException - if name is null, or if obj is null
      • list

        String[] list()
                      throws RemoteException,
                             AccessException
        Returns an array of the names bound in this registry. The array will contain a snapshot of the names bound in this registry at the time of the given invocation of this method.
        Returns:
        an array of the names bound in this registry
        Throws:
        RemoteException - if remote communication with the registry failed; if exception is a ServerException containing an AccessException, then the registry denies the caller access to perform this operation
        AccessException - if this registry is local and it denies the caller access to perform this operation

Nederlandse vertaling

U hebt gevraagd om deze site in het Nederlands te bezoeken. Voor nu wordt alleen de interface vertaald, maar nog niet alle inhoud.

Als je me wilt helpen met vertalingen, is je bijdrage welkom. Het enige dat u hoeft te doen, is u op de site registreren en mij een bericht sturen waarin u wordt gevraagd om u toe te voegen aan de groep vertalers, zodat u de gewenste pagina's kunt vertalen. Een link onderaan elke vertaalde pagina geeft aan dat u de vertaler bent en heeft een link naar uw profiel.

Bij voorbaat dank.

Document heeft de 11/06/2005 gemaakt, de laatste keer de 04/03/2020 gewijzigd
Bron van het afgedrukte document:https://www.gaudry.be/nl/java-api-rf-java/rmi/registry/registry.html

De infobrol is een persoonlijke site waarvan de inhoud uitsluitend mijn verantwoordelijkheid is. De tekst is beschikbaar onder CreativeCommons-licentie (BY-NC-SA). Meer info op de gebruiksvoorwaarden en de auteur.

Referenties

  1. Bekijk - html-document Taal van het document:fr Manuel PHP : https://docs.oracle.com

Deze verwijzingen en links verwijzen naar documenten die geraadpleegd zijn tijdens het schrijven van deze pagina, of die aanvullende informatie kunnen geven, maar de auteurs van deze bronnen kunnen niet verantwoordelijk worden gehouden voor de inhoud van deze pagina.
De auteur Deze site is als enige verantwoordelijk voor de manier waarop de verschillende concepten, en de vrijheden die met de referentiewerken worden genomen, hier worden gepresenteerd. Vergeet niet dat u meerdere broninformatie moet doorgeven om het risico op fouten te verkleinen.

Inhoudsopgave Haut