com.lordofthejars.nosqlunit.elasticsearch2.EmbeddedElasticsearchInstancesFactory Maven / Gradle / Ivy
The newest version!
package com.lordofthejars.nosqlunit.elasticsearch2;
import com.lordofthejars.nosqlunit.util.EmbeddedInstances;
import org.elasticsearch.node.Node;
public class EmbeddedElasticsearchInstancesFactory {
private static EmbeddedInstances embeddedInstances;
private EmbeddedElasticsearchInstancesFactory() {
}
public synchronized static EmbeddedInstances getInstance() {
if (embeddedInstances == null) {
embeddedInstances = new EmbeddedInstances<>();
}
return embeddedInstances;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy