API Overview API Index Package Overview Direct link to this page
JDK 1.6
  java.rmi.activation. ActivationDesc View Source
Author(s)
Ann Wollrath
Since
1.2
Version
1.29, 11/17/05
Serial
Hierarchy
 Object
      ActivationDesc
Implements
 Serializable
Subclasses
Description
publicfinal class ActivationDesc
  An activation descriptor contains the information necessary to activate an object: 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.
See also:    Activatable
Constructors
public ActivationDesc (ActivationGroupID groupID, String className, String location, MarshalledObject<Object> data)
  Constructs an object descriptor for an object whose class name is className that can be loaded from the code location and whose initialization information is data.
public ActivationDesc (ActivationGroupID groupID, String className, String location, MarshalledObject<Object> data, boolean restart)
  Constructs an object descriptor for an object whose class name is className that can be loaded from the code location and whose initialization information is data.
public ActivationDesc (String className, String location, MarshalledObject<Object> data) throws ActivationException
  Constructs an object descriptor for an object whose class name is className, that can be loaded from the code location and whose initialization information is data.
public ActivationDesc (String className, String location, MarshalledObject<Object> data, boolean restart) throws ActivationException
  Constructs an object descriptor for an object whose class name is className, that can be loaded from the code location and whose initialization information is data.
Methods
Hide/Show inherited methods
public boolean equals (Object obj)
  Compares two activation descriptors for content equality.
public String getClassName ()
  Returns the class name for the object specified by this descriptor.
public MarshalledObject<Object> getData ()
  Returns a "marshalled object" containing intialization/activation data for the object specified by this descriptor.
public ActivationGroupID getGroupID ()
  Returns the group identifier for the object specified by this descriptor.
public String getLocation ()
  Returns the code location for the object specified by this descriptor.
public boolean getRestartMode ()
  Returns the "restart" mode of the object associated with this activation descriptor.
public int hashCode ()
  Return the same hashCode for similar ActivationDescs.
Fields
Hide/Show inherited fields
Nested Classes
Generated By: JavaOnTracks Doclet 0.1.4     ©Thibaut Colar