Uses of Interface
java.rmi.server.RMIClientSocketFactory
Package
Description
Provides a class and two interfaces for the RMI registry.
Provides classes and interfaces for supporting the server side of RMI.
The RMI connector is a connector for the JMX Remote API that
uses RMI to transmit client requests to a remote MBean server.
Provides implementations of
RMIClientSocketFactory
and RMIServerSocketFactory
over
the Secure Sockets Layer (SSL) or Transport Layer Security (TLS) protocols.-
Uses of RMIClientSocketFactory in java.rmi.registry
Modifier and TypeMethodDescriptionstatic Registry
LocateRegistry.createRegistry
(int port, RMIClientSocketFactory csf, RMIServerSocketFactory ssf) Creates and exports aRegistry
instance on the local host that uses custom socket factories for communication with that instance.static Registry
LocateRegistry.getRegistry
(String host, int port, RMIClientSocketFactory csf) Returns a locally created remote reference to the remote objectRegistry
on the specifiedhost
andport
. -
Uses of RMIClientSocketFactory in java.rmi.server
Modifier and TypeClassDescriptionclass
AnRMISocketFactory
instance is used by the RMI runtime in order to obtain client and server sockets for RMI calls.Modifier and TypeMethodDescriptionstatic Remote
UnicastRemoteObject.exportObject
(Remote obj, int port, RMIClientSocketFactory csf, RMIServerSocketFactory ssf) Exports the remote object to make it available to receive incoming calls, using a transport specified by the given socket factory.static Remote
UnicastRemoteObject.exportObject
(Remote obj, int port, RMIClientSocketFactory csf, RMIServerSocketFactory ssf, ObjectInputFilter filter) Exports the remote object to make it available to receive incoming calls, using a transport specified by the given socket factory and filter.ModifierConstructorDescriptionprotected
UnicastRemoteObject
(int port, RMIClientSocketFactory csf, RMIServerSocketFactory ssf) Creates and exports a new UnicastRemoteObject object using the particular supplied port and socket factories. -
Uses of RMIClientSocketFactory in javax.management.remote.rmi
ModifierConstructorDescriptionRMIJRMPServerImpl
(int port, RMIClientSocketFactory csf, RMIServerSocketFactory ssf, Map<String, ?> env) Creates a newRMIServer
object that will be exported on the given port using the given socket factories. -
Uses of RMIClientSocketFactory in javax.rmi.ssl
Modifier and TypeClassDescriptionclass
AnSslRMIClientSocketFactory
instance is used by the RMI runtime in order to obtain client sockets for RMI calls via SSL.