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

liquibase.ext.cosmosdb.changelog.ChangeSetRepository Maven / Gradle / Ivy

There is a newer version: 4.31.0
Show newest version
package liquibase.ext.cosmosdb.changelog;

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

public class ChangeSetRepository extends AbstractRepository {

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy