com.lordofthejars.nosqlunit.infinispan.EmbeddedInfinispanInstancesFactory Maven / Gradle / Ivy
package com.lordofthejars.nosqlunit.infinispan;
import org.infinispan.manager.EmbeddedCacheManager;
import com.lordofthejars.nosqlunit.util.EmbeddedInstances;
public class EmbeddedInfinispanInstancesFactory {
private static EmbeddedInstances embeddedInstances;
private EmbeddedInfinispanInstancesFactory() {
super();
}
public synchronized static EmbeddedInstances getInstance() {
if(embeddedInstances == null) {
embeddedInstances = new EmbeddedInstances();
}
return embeddedInstances;
}
}