Package com.microstrategy.web.objects
Interface WebClusterInfo
-
public interface WebClusterInfoThis interface represents the information for a single i-Server cluster
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description WebClusterNodeInfogetNode(int i)ReturnsWebClusterNodeInfointerface for a given node index from the collection of cluster nodes.WebClusterNodeInfogetNode(java.lang.String nodeName)ReturnsWebClusterNodeInfointerface for a given node name from the collection of cluster nodes.intgetNodeCount()Returns a a number ofWebClusterNodeInfointerfaces those are in the cluster
-
-
-
Method Detail
-
getNodeCount
int getNodeCount()
Returns a a number ofWebClusterNodeInfointerfaces those are in the cluster- Returns:
-
getNode
WebClusterNodeInfo getNode(int i)
ReturnsWebClusterNodeInfointerface for a given node index from the collection of cluster nodes.- Parameters:
i- Index of a node from collection where the first element has index 0.- Returns:
- a
WebClusterNodeInfo. Returns null if not found
-
getNode
WebClusterNodeInfo getNode(java.lang.String nodeName)
ReturnsWebClusterNodeInfointerface for a given node name from the collection of cluster nodes.- Parameters:
nodeName-- Returns:
- a
WebClusterNodeInfo. Returns null if not found
-
-