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

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

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

import liquibase.ext.cosmosdb.statement.CountDocumentsInContainerStatement;

public class GetNextChangeSetSequenceValueStatement extends CountDocumentsInContainerStatement {

    public static final String COMMAND_NAME = "nextChangeSetSequence";

    public GetNextChangeSetSequenceValueStatement(final String containerId) {
        super(containerId);
    }

    @Override
    public String getCommandName() {
        return COMMAND_NAME;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy