Serializable
, Remote
UnicastRemoteObject
public abstract class RemoteServer extends RemoteObject
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).ref
Modifier | Constructor | Description |
---|---|---|
protected |
Constructs a RemoteServer . |
|
protected |
Constructs a RemoteServer with the given reference type. |
Modifier and Type | Method | Description |
---|---|---|
static String |
getClientHost() |
Returns a string representation of the client host for the remote method invocation being processed in the current thread. |
static PrintStream |
getLog() |
Returns stream for the RMI call log. |
static void |
setLog |
Log RMI calls to the output stream out . |
protected RemoteServer()
RemoteServer
.protected RemoteServer(RemoteRef ref)
RemoteServer
with the given reference type.ref
- the remote referencepublic static String getClientHost() throws ServerNotActiveException
ServerNotActiveException
- if no remote method invocation is being processed in the current threadpublic static void setLog(OutputStream out)
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
.
out
- the output stream to which RMI calls should be loggedSecurityException
- if there is a security manager and the invocation of its checkPermission
method failspublic static PrintStream getLog()
© 1993, 2023, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
https://docs.oracle.com/en/java/javase/21/docs/api/java.rmi/java/rmi/server/RemoteServer.html