This documentation differs from the official API. Jadeite adds extra features to the API including: variable font sizes, constructions examples, placeholders for classes and methods, and auto-generated “See Also” links. Additionally it is missing some items found in standard Javadoc documentation, including: generics type information, “Deprecated” tags and comments, “See Also” links, along with other minor differences. Please send any questions or feedback to bam@cs.cmu.edu.


javax.management.remote.rmi
class RMIJRMPServerImpl

java.lang.Object extended by javax.management.remote.rmi.RMIServerImpl extended by javax.management.remote.rmi.RMIJRMPServerImpl
All Implemented Interfaces:
Closeable, RMIServer

public class RMIJRMPServerImpl
extends RMIServerImpl

An {@link RMIServer} object that is exported through JRMP and that creates client connections as RMI objects exported through JRMP. User code does not usually reference this class directly.


Constructor Summary

          Creates a new javax.management.remote.rmi.RMIServer object that will be exported on the given port using the given socket factories.
 
Method Summary
protected void

          Closes a client connection made by javax.management.remote.rmi.RMIServerImpl.makeClient.
protected void

          Called by javax.management.remote.rmi.RMIServerImpl.close to close the connector server by unexporting this object.
protected void

          Exports this RMI object.
protected String

          Returns the protocol string for this object.
protected RMIConnection
makeClient(String connectionId, Subject subject)

          Creates a new client connection as an RMI object exported through JRMP.
 Remote

          Returns a serializable stub for this javax.management.remote.rmi.RMIServer object.
 
Methods inherited from class javax.management.remote.rmi.RMIServerImpl
clientClosed, close, closeClient, closeServer, export, getDefaultClassLoader, getMBeanServer, getProtocol, getVersion, makeClient, newClient, setDefaultClassLoader, setMBeanServer, toStub
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

RMIJRMPServerImpl

public RMIJRMPServerImpl(int port,
                         RMIClientSocketFactory csf,
                         RMIServerSocketFactory ssf,
                         Map env)
                  throws IOException

Creates a new {@link RMIServer} object that will be exported on the given port using the given socket factories.

Parameters:
port - the port on which this object and the {@link RMIConnectionImpl} objects it creates will be exported. Can be zero, to indicate any available port.
csf - the client socket factory for the created RMI objects. Can be null.
ssf - the server socket factory for the created RMI objects. Can be null.
env - the environment map. Can be null.
Throws:
IOException - if the {@link RMIServer} object cannot be created.
Method Detail

closeClient

protected void closeClient(RMIConnection client)
                    throws IOException
Overrides:
closeClient in class RMIServerImpl
Parameters:
client
Throws:
IOException

closeServer

protected void closeServer()
                    throws IOException

Called by {@link #close()} to close the connector server by unexporting this object. After returning from this method, the connector server must not accept any new connections.

Overrides:
closeServer in class RMIServerImpl
Throws:
IOException - if the attempt to close the connector server failed.

export

protected void export()
               throws IOException
Overrides:
export in class RMIServerImpl
Throws:
IOException

getProtocol

protected String getProtocol()
Overrides:
getProtocol in class RMIServerImpl

makeClient

protected RMIConnection makeClient(String connectionId,
                                   Subject subject)
                            throws IOException

Creates a new client connection as an RMI object exported through JRMP. The port and socket factories for the new {@link RMIConnection} object are the ones supplied to the RMIJRMPServerImpl constructor.

Overrides:
makeClient in class RMIServerImpl
Parameters:
connectionId - the ID of the new connection. Every connection opened by this connector server will have a different id. The behavior is unspecified if this parameter is null.
subject - the authenticated subject. Can be null.
Returns:
the newly-created RMIConnection.
Throws:
IOException - if the new {@link RMIConnection} object cannot be created or exported.

toStub

public Remote toStub()
              throws IOException

Returns a serializable stub for this {@link RMIServer} object.

Overrides:
toStub in class RMIServerImpl
Returns:
a serializable stub.
Throws:
IOException - if the stub cannot be obtained - e.g the RMIJRMPServerImpl has not been exported yet.


This documentation differs from the official API. Jadeite adds extra features to the API including: variable font sizes, constructions examples, placeholders for classes and methods, and auto-generated “See Also” links. Additionally it is missing some items found in standard Javadoc documentation, including: generics type information, “Deprecated” tags and comments, “See Also” links, along with other minor differences. Please send any questions or feedback to bam@cs.cmu.edu.
This page displays the Jadeite version of the documention, which is derived from the offical documentation that contains this copyright notice:
Copyright 2008 Sun Microsystems, Inc. All rights reserved. Use is subject to license terms. Also see the documentation redistribution policy.
The official Sun™ documentation can be found here at http://java.sun.com/javase/6/docs/api/.