return CASSANDRA_ROLE;
}
@Override
protected void beforeBootstrap(ClusterActionEvent event) throws IOException {
ClusterSpec clusterSpec = event.getClusterSpec();
Configuration conf = clusterSpec.getConfiguration();
addStatement(event, call("retry_helpers"));
addStatement(event, call("install_tarball"));
addStatement(event, call("install_service"));
addStatement(event, call(getInstallFunction(conf, "java", "install_openjdk")));
Configuration config = clusterSpec.getConfiguration();
String tarball = prepareRemoteFileUrl(event, config.getString(BIN_TARBALL, null));
String major = config.getString(MAJOR_VERSION, null);
if (tarball != null && major != null) {