All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.lordofthejars.nosqlunit.elasticsearch.EmbeddedElasticsearchInstancesFactory Maven / Gradle / Ivy

There is a newer version: 1.0.0
Show newest version
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;
	}
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy