Java java.rmi.registry Registry fields, constructors, methods, implement or subclass

Example usage for Java java.rmi.registry Registry fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for java.rmi.registry Registry.

The text is from its open source code.

Field

intREGISTRY_PORT
Well known port for registry.

Method

voidbind(String name, Remote obj)
Binds a remote reference to the specified name in this registry.
String[]list()
Returns an array of the names bound in this registry.
Remotelookup(String name)
Returns the remote reference bound to the specified name in this registry.
voidrebind(String name, Remote obj)
Replaces the binding for the specified name in this registry with the supplied remote reference.
voidunbind(String name)
Removes the binding for the specified name in this registry.