RemoteServer (Java SE 13 & JDK 13 )
- 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).
- Since:
- 1.1
- See Also:
- Serialized Form
-
Field Summary
-
Constructor Summary
Constructors Modifier Constructor Description protectedRemoteServer()Constructs a
RemoteServer.protectedRemoteServer(RemoteRef ref)Constructs a
RemoteServerwith the given reference type. -
Method Summary
Modifier and Type Method Description static StringgetClientHost()Returns a string representation of the client host for the remote method invocation being processed in the current thread.
static PrintStreamgetLog()Returns stream for the RMI call log.
static voidsetLog(OutputStream out)Log RMI calls to the output stream
out.
-
Constructor Details
-
RemoteServer
protected RemoteServer()
Constructs a
RemoteServer.- Since:
- 1.1
-
RemoteServer
protected RemoteServer(RemoteRef ref)
Constructs a
RemoteServerwith the given reference type.- Parameters:
ref- the remote reference- Since:
- 1.1
-
-
Method Details
-
getClientHost
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- Since:
- 1.1
-
setLog
Log RMI calls to the output stream
out. Ifoutisnull, call logging is turned off.If there is a security manager, its
checkPermissionmethod will be invoked with ajava.util.logging.LoggingPermission("control")permission; this could result in aSecurityException.- Parameters:
out- the output stream to which RMI calls should be logged- Throws:
SecurityException- if there is a security manager and the invocation of itscheckPermissionmethod fails- Since:
- 1.1
- See Also:
getLog()
-
getLog
Returns stream for the RMI call log.
- Returns:
- the call log
- Since:
- 1.1
- See Also:
setLog(java.io.OutputStream)
-
Report a bug or suggest an enhancement
For further API reference and developer documentation see the Java SE Documentation, which contains more detailed, developer-targeted descriptions with conceptual overviews, definitions of terms, workarounds, and working code examples.
Java is a trademark or registered trademark of Oracle and/or its affiliates in the US and other countries.
Copyright © 1993, 2019, Oracle and/or its affiliates, 500 Oracle Parkway, Redwood Shores, CA 94065 USA.
All rights reserved. Use is subject to license terms and the documentation redistribution policy.