clusterName = getPropertyGently(properties, CLUSTER_NAME_PROP,true);
keyspace = getPropertyGently(properties, KEYSPACE_PROP,true);
if ( cassandraHostConfigurator == null ) {
String hostList = getPropertyGently(properties, HOST_LIST_PROP, false);
if ( StringUtils.isNotBlank(hostList) ) {
cassandraHostConfigurator = new CassandraHostConfigurator(hostList);
} else {
cassandraHostConfigurator = new CassandraHostConfigurator();
}
}
this.cassandraHostConfigurator = cassandraHostConfigurator;
}