com.lordofthejars.nosqlunit.elasticsearch.EmbeddedElasticsearchInstancesFactory Maven / Gradle / Ivy
package com.lordofthejars.nosqlunit.elasticsearch;
import org.elasticsearch.node.Node;
import com.lordofthejars.nosqlunit.util.EmbeddedInstances;
public class EmbeddedElasticsearchInstancesFactory {
private static EmbeddedInstances embeddedInstances;
private EmbeddedElasticsearchInstancesFactory() {
super();
}
public synchronized static EmbeddedInstances getInstance() {
if(embeddedInstances == null) {
embeddedInstances = new EmbeddedInstances();
}
return embeddedInstances;
}
}