- 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
TheRemoteServer
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 byRemoteServer
and concretely by its subclass(es).- Since:
- JDK1.1
- See Also:
- Serialized Form
-
-
Field Summary
-
Fields inherited from class java.rmi.server.RemoteObject
ref
-
-
Constructor Summary
Constructors Modifier Constructor and Description protected
RemoteServer()
Constructs aRemoteServer
.protected
RemoteServer(RemoteRef ref)
Constructs aRemoteServer
with the given reference type.
-
Method Summary
Methods Modifier and Type Method and 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(OutputStream out)
Log RMI calls to the output streamout
.
-
-
-
Constructor Detail
-
RemoteServer
protected RemoteServer()
Constructs aRemoteServer
.- Since:
- JDK1.1
-
RemoteServer
protected RemoteServer(RemoteRef ref)
Constructs aRemoteServer
with the given reference type.- Parameters:
ref
- the remote reference- Since:
- JDK1.1
-
-
Method Detail
-
getClientHost
public 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:
- JDK1.1
-
setLog
public static void setLog(OutputStream out)
Log RMI calls to the output streamout
. Ifout
isnull
, call logging is turned off.If there is a security manager, its
checkPermission
method 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 itscheckPermission
method fails- Since:
- JDK1.1
- See Also:
getLog()
-
getLog
public static PrintStream getLog()
Returns stream for the RMI call log.- Returns:
- the call log
- Since:
- JDK1.1
- See Also:
setLog(java.io.OutputStream)
-
-
Traduction non disponible
Les API Java ne sont pas encore traduites en français sur l'infobrol. Seule la version anglaise est disponible pour l'instant.
Version en cache
06/11/2024 01:08:52 Cette version de la page est en cache (à la date du 06/11/2024 01:08:52) afin d'accélérer le traitement. Vous pouvez activer le mode utilisateur dans le menu en haut pour afficher la dernère version de la page.Document créé le 31/08/2006, dernière modification le 04/03/2020
Source du document imprimé : https://www.gaudry.be/java-api-rf-java/rmi/server/RemoteServer.html
L'infobrol est un site personnel dont le contenu n'engage que moi. Le texte est mis à disposition sous licence CreativeCommons(BY-NC-SA). Plus d'info sur les conditions d'utilisation et sur l'auteur.
Références
Ces références et liens indiquent des documents consultés lors de la rédaction de cette page, ou qui peuvent apporter un complément d'information, mais les auteurs de ces sources ne peuvent être tenus responsables du contenu de cette page.
L'auteur de ce site est seul responsable de la manière dont sont présentés ici les différents concepts, et des libertés qui sont prises avec les ouvrages de référence. N'oubliez pas que vous devez croiser les informations de sources multiples afin de diminuer les risques d'erreurs.