Package com.microstrategy.web.objects
Interface WebClusterInfo
-
public interface WebClusterInfo
This interface represents the information for a single i-Server cluster
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description WebClusterNodeInfo
getNode(int i)
ReturnsWebClusterNodeInfo
interface for a given node index from the collection of cluster nodes.WebClusterNodeInfo
getNode(java.lang.String nodeName)
ReturnsWebClusterNodeInfo
interface for a given node name from the collection of cluster nodes.int
getNodeCount()
Returns a a number ofWebClusterNodeInfo
interfaces those are in the cluster
-
-
-
Method Detail
-
getNodeCount
int getNodeCount()
Returns a a number ofWebClusterNodeInfo
interfaces those are in the cluster- Returns:
-
getNode
WebClusterNodeInfo getNode(int i)
ReturnsWebClusterNodeInfo
interface 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)
ReturnsWebClusterNodeInfo
interface for a given node name from the collection of cluster nodes.- Parameters:
nodeName
-- Returns:
- a
WebClusterNodeInfo
. Returns null if not found
-
-