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

io.quarkus.datasource.runtime.DatabaseSchemaProvider Maven / Gradle / Ivy

There is a newer version: 3.17.0.CR1
Show newest version
package io.quarkus.datasource.runtime;

/**
 * A service interface that can be used to reset the database for dev and test mode.
 */
public interface DatabaseSchemaProvider {

    void resetDatabase(String dbName);

    void resetAllDatabases();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy