- java.lang.Object
- 
- java.rmi.server.RemoteObject
- 
- java.rmi.server.RemoteServer
 
 
- 
- All Implemented Interfaces:
- Serializable,- Remote
 - Direct Known Subclasses:
- Activatable,- UnicastRemoteObject
 
 public abstract class RemoteServer extends RemoteObject TheRemoteServerclass 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 byRemoteServerand concretely by its subclass(es).- Since:
- 1.1
- See Also:
- Serialized Form
 
- 
- 
Field Summary- 
Fields declared in class java.rmi.server.RemoteObjectref
 
- 
 - 
Constructor SummaryConstructors Modifier Constructor Description protectedRemoteServer()Constructs aRemoteServer.protectedRemoteServer(RemoteRef ref)Constructs aRemoteServerwith the given reference type.
 - 
Method SummaryAll Methods Static Methods Concrete Methods 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 streamout.
 
- 
- 
- 
Constructor Detail- 
RemoteServerprotected RemoteServer() Constructs aRemoteServer.- Since:
- 1.1
 
 - 
RemoteServerprotected RemoteServer(RemoteRef ref) Constructs aRemoteServerwith the given reference type.- Parameters:
- ref- the remote reference
- Since:
- 1.1
 
 
- 
 - 
Method Detail- 
getClientHostpublic 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
- Since:
- 1.1
 
 - 
setLogpublic static void setLog(OutputStream out) Log RMI calls to the output streamout. 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 its- checkPermissionmethod fails
- Since:
- 1.1
- See Also:
- getLog()
 
 - 
getLogpublic static PrintStream getLog() Returns stream for the RMI call log.- Returns:
- the call log
- Since:
- 1.1
- See Also:
- setLog(java.io.OutputStream)
 
 
- 
 
-