public int addCluster(String iClusterName, CLUSTER_TYPE iType) {
   checkOpeness();
   return underlying.addCluster(iType.toString(), iClusterName, null, null);
 }
 public int addCluster(
     final String iClusterName, final CLUSTER_TYPE iType, final Object... iParameters) {
   checkOpeness();
   return underlying.addCluster(iType.toString(), iClusterName, null, null, iParameters);
 }