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

liquibase.ext.cosmosdb.lockservice.ChangeLogLockRepository Maven / Gradle / Ivy

There is a newer version: 4.30.0
Show newest version
package liquibase.ext.cosmosdb.lockservice;

import com.azure.cosmos.CosmosDatabase;
import liquibase.ext.cosmosdb.persistence.AbstractRepository;

public class ChangeLogLockRepository extends AbstractRepository {

    public ChangeLogLockRepository(final CosmosDatabase database, final String containerId) {
        super(database.getContainer(containerId)
                , new ChangeLogLockToDocumentConverter());
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy