Retrieves and sets the properties of a cluster.
ClusterPropertiesVO getClusterProperties() throws SUPAdminException; void setClusterSyncDataSharedPathEnabled(boolean) throws SUPAdminException; void setClusterSyncDataSharedPath(path) throws SUPAdminException void setClusterProperties(vo)
If successful, returns an object of the specified type (can be null). If unsuccessful, returns SUPAdminException.
//Get cluster properties
ClusterPropertiesVO vo = supCluster.getClusterProperties();
//change cluster properties
vo.setClusterSyncDataSharedPathEnabled(true);
vo.setClusterSyncDataSharedPath("\\\\myhost\\newSharedPath");
//Set cluster properties
supCluster.setClusterProperties(vo);