public class java.rmi.activation
ActivationGroupID


Show All Login
Java SE 6
  
Implements: Serializable
Details
The identifier for a registered activation group serves several purposes:

The ActivationGroupID is returned from the call to ActivationSystem.registerGroup and is used to identify the group within the activation system. This group id is passed as one of the arguments to the activation group's special constructor when an activation group is created/recreated.
version1.16, 11/17/05
since1.2
See also java.rmi.activation.ActivationGroup, java.rmi.activation.ActivationGroupDesc


Constructors
public ActivationGroupID(ActivationSystem system) Details
Constructs a unique group id.
systemthe group's activation system
since1.2

Methods
public boolean equals(Object obj) Details
Compares two group identifiers for content equality. Returns true if both of the following conditions are true: 1) the unique identifiers are equivalent (by content), and 2) the activation system specified in each refers to the same remote object.
objthe Object to compare with
returntrue if these Objects are equal; false otherwise.
since1.2
See also java.util.Hashtable
public int hashCode() Details
Returns a hashcode for the group's identifier. Two group identifiers that refer to the same remote group will have the same hash code.
since1.2
See also java.util.Hashtable

Properties
public ActivationSystem getSystem() Details
Returns the group's activation system.
returnthe group's activation system
since1.2