Uses of Interface
java.rmi.server.RMIClientSocketFactory
Packages that use RMIClientSocketFactory
Package
Description
Provides support for RMI Object Activation.
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.activationMethods in java.rmi.activation with parameters of type RMIClientSocketFactoryModifier and TypeMethodDescriptionstatic ActivationIDActivatable.exportObject(Remote obj, String location, MarshalledObject<?> data, boolean restart, int port, RMIClientSocketFactory csf, RMIServerSocketFactory ssf)Deprecated, for removal: This API element is subject to removal in a future version.Registers an activation descriptor (with the specified location, data, and restart mode) for the specified object, and exports that object with the specified port, and the specified client and server socket factories.static RemoteActivatable.exportObject(Remote obj, ActivationID id, int port, RMIClientSocketFactory csf, RMIServerSocketFactory ssf)Deprecated, for removal: This API element is subject to removal in a future version.Export the activatable remote object to the RMI runtime to make the object available to receive incoming calls.Constructors in java.rmi.activation with parameters of type RMIClientSocketFactoryModifierConstructorDescriptionprotectedActivatable(String location, MarshalledObject<?> data, boolean restart, int port, RMIClientSocketFactory csf, RMIServerSocketFactory ssf)Deprecated, for removal: This API element is subject to removal in a future version.Constructs an activatable remote object by registering an activation descriptor (with the specified location, data, and restart mode) for this object, and exporting the object with the specified port, and specified client and server socket factories.protectedActivatable(ActivationID id, int port, RMIClientSocketFactory csf, RMIServerSocketFactory ssf)Deprecated, for removal: This API element is subject to removal in a future version.Constructor used to activate/export the object on a specified port.
- 
Uses of RMIClientSocketFactory in java.rmi.registryMethods in java.rmi.registry with parameters of type RMIClientSocketFactoryModifier and TypeMethodDescriptionstatic RegistryLocateRegistry.createRegistry(int port, RMIClientSocketFactory csf, RMIServerSocketFactory ssf)Creates and exports aRegistryinstance on the local host that uses custom socket factories for communication with that instance.static RegistryLocateRegistry.getRegistry(String host, int port, RMIClientSocketFactory csf)Returns a locally created remote reference to the remote objectRegistryon the specifiedhostandport.
- 
Uses of RMIClientSocketFactory in java.rmi.serverClasses in java.rmi.server that implement RMIClientSocketFactoryModifier and TypeClassDescriptionclassAnRMISocketFactoryinstance is used by the RMI runtime in order to obtain client and server sockets for RMI calls.Methods in java.rmi.server with parameters of type RMIClientSocketFactoryModifier and TypeMethodDescriptionstatic RemoteUnicastRemoteObject.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 RemoteUnicastRemoteObject.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.Constructors in java.rmi.server with parameters of type RMIClientSocketFactoryModifierConstructorDescriptionprotectedUnicastRemoteObject(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.rmiConstructors in javax.management.remote.rmi with parameters of type RMIClientSocketFactoryModifierConstructorDescriptionRMIJRMPServerImpl(int port, RMIClientSocketFactory csf, RMIServerSocketFactory ssf, Map<String,?> env)Creates a newRMIServerobject that will be exported on the given port using the given socket factories.
- 
Uses of RMIClientSocketFactory in javax.rmi.sslClasses in javax.rmi.ssl that implement RMIClientSocketFactoryModifier and TypeClassDescriptionclassAnSslRMIClientSocketFactoryinstance is used by the RMI runtime in order to obtain client sockets for RMI calls via SSL.