
li.rudin.jooq.cdi.DatabaseConfiguration Maven / Gradle / Ivy
The newest version!
package li.rudin.jooq.cdi;
import org.jooq.SQLDialect;
public interface DatabaseConfiguration
{
/**
* The database url
* @return
*/
String getDatabaseUrl();
/**
* The username for the connection
* @return
*/
String getUserName();
/**
* The password for the connection
* @return
*/
String getPassword();
/**
* The jdbc driver class
* @return
*/
String getDriverClass();
/**
* The dialect to use
* @return
*/
SQLDialect getDialect();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy