- java.lang.Object
- 
- java.rmi.activation.ActivationGroupID
 
- 
- All Implemented Interfaces:
- Serializable
 
 
 public class ActivationGroupID extends Object implements Serializable The identifier for a registered activation group serves several purposes:- identifies the group uniquely within the activation system, and
- contains a reference to the group's activation system so that the group can contact its activation system when necessary.
 The ActivationGroupIDis returned from the call toActivationSystem.registerGroupand 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.- Since:
- 1.2
- See Also:
- ActivationGroup,- ActivationGroupDesc, Serialized Form
 
- 
- 
Constructor SummaryConstructors Constructor Description ActivationGroupID(ActivationSystem system)Constructs a unique group id.
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object obj)Compares two group identifiers for content equality.ActivationSystemgetSystem()Returns the group's activation system.inthashCode()Returns a hashcode for the group's identifier.
 
- 
- 
- 
Constructor Detail- 
ActivationGroupIDpublic ActivationGroupID(ActivationSystem system) Constructs a unique group id.- Parameters:
- system- the group's activation system
- Throws:
- UnsupportedOperationException- if and only if activation is not supported by this implementation
- Since:
- 1.2
 
 
- 
 - 
Method Detail- 
getSystempublic ActivationSystem getSystem() Returns the group's activation system.- Returns:
- the group's activation system
- Since:
- 1.2
 
 - 
hashCodepublic int hashCode() Returns a hashcode for the group's identifier. Two group identifiers that refer to the same remote group will have the same hash code.
 - 
equalspublic boolean equals(Object obj) 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.
 
- 
 
-