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 RMIIIOPServerImpl

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

public class RMIIIOPServerImpl
extends RMIServerImpl

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


Constructor Summary

          Creates a new javax.management.remote.rmi.RMIServerImpl.
 
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 IIOP.
 Remote

          Returns an IIOP stub.
 
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

RMIIIOPServerImpl

public RMIIIOPServerImpl(Map env)
                  throws IOException

Creates a new {@link RMIServerImpl}.

Parameters:
env - the environment containing attributes for the new RMIServerImpl. Can be null, which is equivalent to an empty Map.
Throws:
IOException - if the RMI 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 IIOP.

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 client object cannot be created or exported.

toStub

public Remote toStub()
              throws IOException

Returns an IIOP stub.

The stub might not yet be connected to the ORB. The stub will be serializable only if it is connected to the ORB.

Overrides:
toStub in class RMIServerImpl
Returns:
an IIOP stub.
Throws:
IOException - if the stub cannot be created - e.g the RMIIIOPServerImpl 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/.