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

com.lordofthejars.nosqlunit.dynamodb.EmbeddedDynamoInstancesFactory Maven / Gradle / Ivy

The newest version!

package com.lordofthejars.nosqlunit.dynamodb;

import com.amazonaws.services.dynamodbv2.AmazonDynamoDB;
import com.lordofthejars.nosqlunit.util.EmbeddedInstances;

public class EmbeddedDynamoInstancesFactory {

    private static EmbeddedInstances embeddedInstances;

    private EmbeddedDynamoInstancesFactory() {
        super();
    }

    public static synchronized EmbeddedInstances getInstance() {
        if (embeddedInstances == null) {
            embeddedInstances = new EmbeddedInstances<>();
        }

        return embeddedInstances;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy