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

org.testcontainers.containers.LegacyQuestDBProvider Maven / Gradle / Ivy

The newest version!
package org.testcontainers.containers;

@Deprecated
public class LegacyQuestDBProvider extends JdbcDatabaseContainerProvider {

    @Override
    public boolean supports(String databaseType) {
        return databaseType.equals(QuestDBContainer.LEGACY_DATABASE_PROVIDER);
    }

    @Override
    public JdbcDatabaseContainer newInstance(String tag) {
        return new QuestDBContainer(QuestDBContainer.DEFAULT_IMAGE_NAME.withTag(tag));
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy