com.github.alexcojocaru.mojo.elasticsearch.v2.step.ClusterStep Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of elasticsearch-maven-plugin Show documentation
Show all versions of elasticsearch-maven-plugin Show documentation
A Maven plugin to run a single node Elasticsearch cluster during the integration test phase of a build
package com.github.alexcojocaru.mojo.elasticsearch.v2.step;
import com.github.alexcojocaru.mojo.elasticsearch.v2.ClusterConfiguration;
/**
* Defines a small simple Step/Task/Unit of Work for an Elasticsearch cluster.
*
* @author Alex Cojocaru
*/
public interface ClusterStep
{
void execute(ClusterConfiguration config);
}