com.ibm.websphere.hamanager.jmx
Interface GroupMemberData
-
public interface GroupMemberDataThis represents a group member. It's typically returned as part of a GroupData.- Version:
- 1.8
-
-
Method Summary
Methods Modifier and Type Method and Description java.lang.StringgetCellName()The name of the cell that contains the server hosting this member.java.lang.StringgetFullyQualifiedServerName()This returns the fully qualified server name that is hosting this member.java.util.MapgetMemberProperties()This is the unique map of properties identifying the member from other members in this group.GroupMemberStategetMemberState()java.lang.StringgetNodeName()The name of the node that contains the server hosting this member.java.lang.StringgetServerName()The name of the server that is hosting this member.
-
-
-
Method Detail
-
getFullyQualifiedServerName
java.lang.String getFullyQualifiedServerName()
This returns the fully qualified server name that is hosting this member. This name uniquely identifies a member within a group. A group can only have a single member per server.- Returns:
- String - fully qualified server name in Cell\Node\Server format
-
getCellName
java.lang.String getCellName()
The name of the cell that contains the server hosting this member.- Returns:
- String cell name.
-
getNodeName
java.lang.String getNodeName()
The name of the node that contains the server hosting this member.- Returns:
- String node name.
-
getServerName
java.lang.String getServerName()
The name of the server that is hosting this member.- Returns:
- String server name.
-
getMemberState
GroupMemberState getMemberState()
- Returns:
- The GroupMemberState (type-safe enumeration) that specifies the members state.
-
getMemberProperties
java.util.Map getMemberProperties()
This is the unique map of properties identifying the member from other members in this group.- Returns:
- Map of member properties.
-
-