- All Implemented Interfaces:
Serializable
- the object's group identifier,
- the object's fully-qualified class name,
- the object's code location (the location of the class), a codebase URL path,
- the object's restart "mode", and,
- a "marshalled" object that can contain object specific initialization data.
A descriptor registered with the activation system can be used to
recreate/activate the object specified by the descriptor. The
MarshalledObject
in the object's descriptor is passed
as the second argument to the remote object's constructor for
object to use during reinitialization/activation.
- Since:
- 1.2
- See Also:
Activatable
, Serialized Form
-
Constructor Summary
ConstructorDescriptionActivationDesc(String className, String location, MarshalledObject<?> data)
Deprecated, for removal: This API element is subject to removal in a future version.Constructs an object descriptor for an object whose class name isclassName
, that can be loaded from the codelocation
and whose initialization information isdata
.ActivationDesc(String className, String location, MarshalledObject<?> data, boolean restart)
Deprecated, for removal: This API element is subject to removal in a future version.Constructs an object descriptor for an object whose class name isclassName
, that can be loaded from the codelocation
and whose initialization information isdata
.ActivationDesc(ActivationGroupID groupID, String className, String location, MarshalledObject<?> data)
Deprecated, for removal: This API element is subject to removal in a future version.Constructs an object descriptor for an object whose class name isclassName
that can be loaded from the codelocation
and whose initialization information isdata
.ActivationDesc(ActivationGroupID groupID, String className, String location, MarshalledObject<?> data, boolean restart)
Deprecated, for removal: This API element is subject to removal in a future version.Constructs an object descriptor for an object whose class name isclassName
that can be loaded from the codelocation
and whose initialization information isdata
. -
Method Summary
Modifier and TypeMethodDescriptionboolean
Deprecated, for removal: This API element is subject to removal in a future version.Compares two activation descriptors for content equality.Deprecated, for removal: This API element is subject to removal in a future version.Returns the class name for the object specified by this descriptor.getData()
Deprecated, for removal: This API element is subject to removal in a future version.Returns a "marshalled object" containing intialization/activation data for the object specified by this descriptor.Deprecated, for removal: This API element is subject to removal in a future version.Returns the group identifier for the object specified by this descriptor.Deprecated, for removal: This API element is subject to removal in a future version.Returns the code location for the object specified by this descriptor.boolean
Deprecated, for removal: This API element is subject to removal in a future version.Returns the "restart" mode of the object associated with this activation descriptor.int
hashCode()
Deprecated, for removal: This API element is subject to removal in a future version.Return the same hashCode for similarActivationDesc
s.
-
Constructor Details
-
ActivationDesc
public ActivationDesc(String className, String location, MarshalledObject<?> data) throws ActivationExceptionDeprecated, for removal: This API element is subject to removal in a future version.Constructs an object descriptor for an object whose class name isclassName
, that can be loaded from the codelocation
and whose initialization information isdata
. If this form of the constructor is used, thegroupID
defaults to the current id forActivationGroup
for this VM. All objects with the sameActivationGroupID
are activated in the same VM.Note that objects specified by a descriptor created with this constructor will only be activated on demand (by default, the restart mode is
false
). If an activatable object requires restart services, use one of theActivationDesc
constructors that takes a boolean parameter,restart
.This constructor will throw
ActivationException
if there is no current activation group for this VM. To create anActivationGroup
use theActivationGroup.createGroup
method.- Parameters:
className
- the object's fully package qualified class namelocation
- the object's code location (from where the class is loaded)data
- the object's initialization (activation) data contained in marshalled form.- Throws:
ActivationException
- if the current group is nonexistentUnsupportedOperationException
- if and only if activation is not supported by this implementation- Since:
- 1.2
-
ActivationDesc
public ActivationDesc(String className, String location, MarshalledObject<?> data, boolean restart) throws ActivationExceptionDeprecated, for removal: This API element is subject to removal in a future version.Constructs an object descriptor for an object whose class name isclassName
, that can be loaded from the codelocation
and whose initialization information isdata
. If this form of the constructor is used, thegroupID
defaults to the current id forActivationGroup
for this VM. All objects with the sameActivationGroupID
are activated in the same VM.This constructor will throw
ActivationException
if there is no current activation group for this VM. To create anActivationGroup
use theActivationGroup.createGroup
method.- Parameters:
className
- the object's fully package qualified class namelocation
- the object's code location (from where the class is loaded)data
- the object's initialization (activation) data contained in marshalled form.restart
- if true, the object is restarted (reactivated) when either the activator is restarted or the object's activation group is restarted after an unexpected crash; if false, the object is only activated on demand. Specifyingrestart
to betrue
does not force an initial immediate activation of a newly registered object; initial activation is lazy.- Throws:
ActivationException
- if the current group is nonexistentUnsupportedOperationException
- if and only if activation is not supported by this implementation- Since:
- 1.2
-
ActivationDesc
public ActivationDesc(ActivationGroupID groupID, String className, String location, MarshalledObject<?> data)Deprecated, for removal: This API element is subject to removal in a future version.Constructs an object descriptor for an object whose class name isclassName
that can be loaded from the codelocation
and whose initialization information isdata
. All objects with the samegroupID
are activated in the same Java VM.Note that objects specified by a descriptor created with this constructor will only be activated on demand (by default, the restart mode is
false
). If an activatable object requires restart services, use one of theActivationDesc
constructors that takes a boolean parameter,restart
.- Parameters:
groupID
- the group's identifier (obtained from registeringActivationSystem.registerGroup
method). The group indicates the VM in which the object should be activated.className
- the object's fully package-qualified class namelocation
- the object's code location (from where the class is loaded)data
- the object's initialization (activation) data contained in marshalled form.- Throws:
IllegalArgumentException
- ifgroupID
is nullUnsupportedOperationException
- if and only if activation is not supported by this implementation- Since:
- 1.2
-
ActivationDesc
public ActivationDesc(ActivationGroupID groupID, String className, String location, MarshalledObject<?> data, boolean restart)Deprecated, for removal: This API element is subject to removal in a future version.Constructs an object descriptor for an object whose class name isclassName
that can be loaded from the codelocation
and whose initialization information isdata
. All objects with the samegroupID
are activated in the same Java VM.- Parameters:
groupID
- the group's identifier (obtained from registeringActivationSystem.registerGroup
method). The group indicates the VM in which the object should be activated.className
- the object's fully package-qualified class namelocation
- the object's code location (from where the class is loaded)data
- the object's initialization (activation) data contained in marshalled form.restart
- if true, the object is restarted (reactivated) when either the activator is restarted or the object's activation group is restarted after an unexpected crash; if false, the object is only activated on demand. Specifyingrestart
to betrue
does not force an initial immediate activation of a newly registered object; initial activation is lazy.- Throws:
IllegalArgumentException
- ifgroupID
is nullUnsupportedOperationException
- if and only if activation is not supported by this implementation- Since:
- 1.2
-
-
Method Details
-
getGroupID
Deprecated, for removal: This API element is subject to removal in a future version.Returns the group identifier for the object specified by this descriptor. A group provides a way to aggregate objects into a single Java virtual machine. RMI creates/activates objects with the samegroupID
in the same virtual machine.- Returns:
- the group identifier
- Since:
- 1.2
-
getClassName
Deprecated, for removal: This API element is subject to removal in a future version.Returns the class name for the object specified by this descriptor.- Returns:
- the class name
- Since:
- 1.2
-
getLocation
Deprecated, for removal: This API element is subject to removal in a future version.Returns the code location for the object specified by this descriptor.- Returns:
- the code location
- Since:
- 1.2
-
getData
Deprecated, for removal: This API element is subject to removal in a future version.Returns a "marshalled object" containing intialization/activation data for the object specified by this descriptor.- Returns:
- the object specific "initialization" data
- Since:
- 1.2
-
getRestartMode
public boolean getRestartMode()Deprecated, for removal: This API element is subject to removal in a future version.Returns the "restart" mode of the object associated with this activation descriptor.- Returns:
- true if the activatable object associated with this
activation descriptor is restarted via the activation
daemon when either the daemon comes up or the object's group
is restarted after an unexpected crash; otherwise it returns false,
meaning that the object is only activated on demand via a
method call. Note that if the restart mode is
true
, the activator does not force an initial immediate activation of a newly registered object; initial activation is lazy. - Since:
- 1.2
-
equals
Deprecated, for removal: This API element is subject to removal in a future version.Compares two activation descriptors for content equality. -
hashCode
public int hashCode()Deprecated, for removal: This API element is subject to removal in a future version.Return the same hashCode for similarActivationDesc
s.
-
java.rmi.activation
package specification for further information.