Package com.microstrategy.web.objects
Interface WebClusterInfos
-
public interface WebClusterInfos
This interface represents the information for a collection of i-Server clusters You can use this for retrieving the project information per cluster node by iterating through the clusters
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description WebClusterInfo
getCluster(int i)
ReturnsWebClusterInfo
interface for a given node index from the collection of cluster nodes.WebClusterInfo
getCluster(java.lang.String nodeName)
ReturnsWebClusterInfo
interface for a given node name from the collection of cluster nodes.int
getClusterCount()
Returns a a number ofWebClusterInfo
interfaces those are in the cluster
-
-
-
Method Detail
-
getClusterCount
int getClusterCount()
Returns a a number ofWebClusterInfo
interfaces those are in the cluster- Returns:
-
getCluster
WebClusterInfo getCluster(int i)
ReturnsWebClusterInfo
interface for a given node index from the collection of cluster nodes.- Parameters:
i
- Index of a node from collection- Returns:
- a
WebClusterInfo
. Returns null if not found
-
getCluster
WebClusterInfo getCluster(java.lang.String nodeName)
ReturnsWebClusterInfo
interface for a given node name from the collection of cluster nodes.- Parameters:
nodeName
-- Returns:
- a
WebClusterInfo
. Returns null if not found
-
-