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.


java.rmi.server
class RemoteServer

java.lang.Object extended by java.rmi.server.RemoteObject extended by java.rmi.server.RemoteServer
All Implemented Interfaces:
Serializable, Remote
Direct Known Subclasses:
Activatable, UnicastRemoteObject

public abstract class RemoteServer
extends RemoteObject

The RemoteServer class is the common superclass to server implementations and provides the framework to support a wide range of remote reference semantics. Specifically, the functions needed to create and export remote objects (i.e. to make them remotely available) are provided abstractly by RemoteServer and concretely by its subclass(es).


Field Summary
 
Fields inherited from class java.rmi.server.RemoteObject
ref
 
Constructor Summary
protected

          Constructs a RemoteServer.
protected

          Constructs a RemoteServer with the given reference type.
 
Method Summary
static String

          Returns a string representation of the client host for the remote method invocation being processed in the current thread.
static PrintStream

          Returns stream for the RMI call log.
static void

          Log RMI calls to the output stream out.
 
Methods inherited from class java.rmi.server.RemoteObject
equals, getRef, hashCode, toString, toStub
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

RemoteServer

protected RemoteServer()
Constructs a RemoteServer.


RemoteServer

protected RemoteServer(RemoteRef ref)
Constructs a RemoteServer with the given reference type.

Parameters:
ref - the remote reference
Method Detail

getClientHost

public static String getClientHost()
                            throws ServerNotActiveException
Returns a string representation of the client host for the remote method invocation being processed in the current thread.

Returns:
a string representation of the client host
Throws:
ServerNotActiveException - if no remote method invocation is being processed in the current thread

getLog

public static PrintStream getLog()
Returns stream for the RMI call log.

Returns:
the call log

setLog

public static void setLog(OutputStream out)
Log RMI calls to the output stream out. If out is null, call logging is turned off.

If there is a security manager, its checkPermission method will be invoked with a java.util.logging.LoggingPermission("control") permission; this could result in a SecurityException.

Parameters:
out - the output stream to which RMI calls should be logged


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/.