java.rmi.server
Class RemoteServer
java.lang.Object
|
+--java.rmi.server.RemoteObject
|
+--java.rmi.server.RemoteServer
- All Implemented Interfaces:
- Remote, Serializable
- 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).
- Since:
- JDK1.1
- See Also:
- Serialized Form
Constructor Summary |
protected |
RemoteServer()
Constructs a RemoteServer . |
protected |
RemoteServer(RemoteRef ref)
Constructs a RemoteServer with the given reference type. |
RemoteServer
protected RemoteServer()
- Constructs a
RemoteServer
.
- Since:
- JDK1.1
RemoteServer
protected RemoteServer(RemoteRef ref)
- Constructs a
RemoteServer
with the given reference type.
- Parameters:
ref
- the remote reference- Since:
- JDK1.1
getClientHost
public static String getClientHost()
throws ServerNotActiveException
- Return the hostname of the current client. When called from a
thread actively handling a remote method invocation the
hostname of the client is returned.
- Returns:
- client hostname
- Throws:
ServerNotActiveException
- If called outside of servicing
a remote method invocation.- Since:
- JDK1.1
setLog
public static void setLog(OutputStream out)
- Log RMI calls to the output stream out. If out is
null, call logging is turned off.
- Parameters:
out
- the output stream to which RMI calls should be logged- Since:
- JDK1.1
getLog
public static PrintStream getLog()
- Returns stream for the RMI call log.
- Returns:
- the call log
- Since:
- JDK1.1
Submit a bug or feature
For further API reference and developer documentation, see Java 2 SDK SE Developer Documentation. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples. Java, Java 2D, and JDBC are trademarks or registered trademarks of Oracle and/or its affiliates, in the US and other countries.
Copyright © 1995, 2010 Oracle and/or its affiliates. All rights reserved.