Package com.microstrategy.web.objects
Interface WebClusterInfos
- 
public interface WebClusterInfosThis 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 WebClusterInfogetCluster(int i)ReturnsWebClusterInfointerface for a given node index from the collection of cluster nodes.WebClusterInfogetCluster(java.lang.String nodeName)ReturnsWebClusterInfointerface for a given node name from the collection of cluster nodes.intgetClusterCount()Returns a a number ofWebClusterInfointerfaces those are in the cluster 
 - 
 
- 
- 
Method Detail
- 
getClusterCount
int getClusterCount()
Returns a a number ofWebClusterInfointerfaces those are in the cluster- Returns:
 
 
- 
getCluster
WebClusterInfo getCluster(int i)
ReturnsWebClusterInfointerface 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)
ReturnsWebClusterInfointerface for a given node name from the collection of cluster nodes.- Parameters:
 nodeName-- Returns:
 - a 
WebClusterInfo. Returns null if not found 
 
 - 
 
 -