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

legolas.sql.interfaces.SQLStarter Maven / Gradle / Ivy

package legolas.sql.interfaces;

import legolas.docker.interfaces.DockerStarter;
import org.testcontainers.containers.GenericContainer;

public abstract class SQLStarter extends DockerStarter {

  protected String username() {
    return System.getProperty("user.name");
  }

  protected abstract TargetDatabase targetDatabase();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy