- java.lang.Object
-
- java.rmi.activation.ActivationGroupDesc
-
- All Implemented Interfaces:
- Serializable
public final class ActivationGroupDesc extends Object implements Serializable
An activation group descriptor contains the information necessary to create/recreate an activation group in which to activate objects. Such a descriptor contains:- the group's class name,
- the group's code location (the location of the group's class), and
- a "marshalled" object that can contain group specific initialization data.
The group's class must be a concrete subclass of
ActivationGroup
. A subclass ofActivationGroup
is created/recreated via theActivationGroup.createGroup
static method that invokes a special constructor that takes two arguments:- the group's
ActivationGroupID
, and - the group's initialization data (in a
java.rmi.MarshalledObject
)
- Since:
- 1.2
- See Also:
ActivationGroup
,ActivationGroupID
, Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class and Description static class
ActivationGroupDesc.CommandEnvironment
Startup options for ActivationGroup implementations.
-
Constructor Summary
Constructors Constructor and Description ActivationGroupDesc(Properties overrides, ActivationGroupDesc.CommandEnvironment cmd)
Constructs a group descriptor that uses the system defaults for group implementation and code location.ActivationGroupDesc(String className, String location, MarshalledObject<?> data, Properties overrides, ActivationGroupDesc.CommandEnvironment cmd)
Specifies an alternate group implementation and execution environment to be used for the group.
-
Method Summary
Methods Modifier and Type Method and Description boolean
equals(Object obj)
Compares two activation group descriptors for content equality.String
getClassName()
Returns the group's class name (possiblynull
).ActivationGroupDesc.CommandEnvironment
getCommandEnvironment()
Returns the group's command-environment control object.MarshalledObject<?>
getData()
Returns the group's initialization data.String
getLocation()
Returns the group's code location.Properties
getPropertyOverrides()
Returns the group's property-override list.int
hashCode()
Produce identical numbers for similarActivationGroupDesc
s.
-
-
-
Constructor Detail
-
ActivationGroupDesc
public ActivationGroupDesc(Properties overrides, ActivationGroupDesc.CommandEnvironment cmd)
Constructs a group descriptor that uses the system defaults for group implementation and code location. Properties specify Java environment overrides (which will override system properties in the group implementation's VM). The command environment can control the exact command/options used in starting the child VM, or can benull
to accept rmid's default.This constructor will create an
ActivationGroupDesc
with anull
group class name, which indicates the system's defaultActivationGroup
implementation.- Parameters:
overrides
- the set of properties to set when the group is recreated.cmd
- the controlling options for executing the VM in another process (ornull
).- Since:
- 1.2
-
ActivationGroupDesc
public ActivationGroupDesc(String className, String location, MarshalledObject<?> data, Properties overrides, ActivationGroupDesc.CommandEnvironment cmd)
Specifies an alternate group implementation and execution environment to be used for the group.- Parameters:
className
- the group's package qualified class name ornull
. Anull
group class name indicates the system's defaultActivationGroup
implementation.location
- the location from where to load the group's classdata
- the group's initialization data contained in marshalled form (could contain properties, for example)overrides
- a properties map which will override those set by default in the subprocess environment (will be translated into-D
options), ornull
.cmd
- the controlling options for executing the VM in another process (ornull
).- Since:
- 1.2
-
-
Method Detail
-
getClassName
public String getClassName()
Returns the group's class name (possiblynull
). Anull
group class name indicates the system's defaultActivationGroup
implementation.- Returns:
- the group's class name
- Since:
- 1.2
-
getLocation
public String getLocation()
Returns the group's code location.- Returns:
- the group's code location
- Since:
- 1.2
-
getData
public MarshalledObject<?> getData()
Returns the group's initialization data.- Returns:
- the group's initialization data
- Since:
- 1.2
-
getPropertyOverrides
public Properties getPropertyOverrides()
Returns the group's property-override list.- Returns:
- the property-override list, or
null
- Since:
- 1.2
-
getCommandEnvironment
public ActivationGroupDesc.CommandEnvironment getCommandEnvironment()
Returns the group's command-environment control object.- Returns:
- the command-environment object, or
null
- Since:
- 1.2
-
equals
public boolean equals(Object obj)
Compares two activation group descriptors for content equality.
-
-
Deutsche Übersetzung
Sie haben gebeten, diese Seite auf Deutsch zu besuchen. Momentan ist nur die Oberfläche übersetzt, aber noch nicht der gesamte Inhalt.Wenn Sie mir bei Übersetzungen helfen wollen, ist Ihr Beitrag willkommen. Alles, was Sie tun müssen, ist, sich auf der Website zu registrieren und mir eine Nachricht zu schicken, in der Sie gebeten werden, Sie der Gruppe der Übersetzer hinzuzufügen, die Ihnen die Möglichkeit gibt, die gewünschten Seiten zu übersetzen. Ein Link am Ende jeder übersetzten Seite zeigt an, dass Sie der Übersetzer sind und einen Link zu Ihrem Profil haben.
Vielen Dank im Voraus.
Dokument erstellt 11/06/2005, zuletzt geändert 04/03/2020
Quelle des gedruckten Dokuments:https://www.gaudry.be/de/java-api-rf-java/rmi/activation/activationgroupdesc.html
Die Infobro ist eine persönliche Seite, deren Inhalt in meiner alleinigen Verantwortung liegt. Der Text ist unter der CreativeCommons-Lizenz (BY-NC-SA) verfügbar. Weitere Informationen auf die Nutzungsbedingungen und dem Autor.
Referenzen
Diese Verweise und Links verweisen auf Dokumente, die während des Schreibens dieser Seite konsultiert wurden, oder die zusätzliche Informationen liefern können, aber die Autoren dieser Quellen können nicht für den Inhalt dieser Seite verantwortlich gemacht werden.
Der Autor Diese Website ist allein dafür verantwortlich, wie die verschiedenen Konzepte und Freiheiten, die mit den Nachschlagewerken gemacht werden, hier dargestellt werden. Denken Sie daran, dass Sie mehrere Quellinformationen austauschen müssen, um das Risiko von Fehlern zu reduzieren.