Class RemoteServer
java.lang.Object
java.rmi.server.RemoteObject
java.rmi.server.RemoteServer
- All Implemented Interfaces:
- Serializable,- Remote
- Direct Known Subclasses:
- UnicastRemoteObject
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:
- 
Field SummaryFields declared in class java.rmi.server.RemoteObjectref
- 
Constructor SummaryConstructorsModifierConstructorDescriptionprotectedConstructs aRemoteServer.protectedRemoteServer(RemoteRef ref) Constructs aRemoteServerwith the given reference type.
- 
Method SummaryModifier and TypeMethodDescriptionstatic StringReturns 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 Details- 
RemoteServerprotected RemoteServer()Constructs aRemoteServer.- Since:
- 1.1
 
- 
RemoteServerConstructs aRemoteServerwith the given reference type.- Parameters:
- ref- the remote reference
- Since:
- 1.1
 
 
- 
- 
Method Details- 
getClientHostReturns 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
 
- 
setLogLog RMI calls to the output streamout. Ifoutisnull, call logging is turned off.- Parameters:
- out- the output stream to which RMI calls should be logged
- Since:
- 1.1
- See Also:
 
- 
getLogReturns stream for the RMI call log.- Returns:
- the call log
- Since:
- 1.1
- See Also:
 
 
-