
io.goodforgod.testcontainers.extensions.cassandra.CassandraMigrationEngine Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of testcontainers-extensions-cassandra Show documentation
Show all versions of testcontainers-extensions-cassandra Show documentation
Testcontainers Testcontainers-extensions-cassandra Extension with advanced testing features
The newest version!
package io.goodforgod.testcontainers.extensions.cassandra;
import java.util.List;
import org.jetbrains.annotations.NotNull;
public interface CassandraMigrationEngine {
default void apply(@NotNull String location) {
apply(List.of(location));
}
void apply(@NotNull List locations);
default void drop(@NotNull String location, Migration.DropMode dropMode) {
drop(List.of(location), dropMode);
}
void drop(@NotNull List locations, Migration.DropMode dropMode);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy