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

net.java.ao.test.jdbc.JdbcConfiguration Maven / Gradle / Ivy

The newest version!
package net.java.ao.test.jdbc;

/**
 * Used with the {@link Jdbc @Jdbc} annotation to specify JDBC parameters for unit testing.
 */
public interface JdbcConfiguration {
    String getUrl();

    String getSchema();

    String getUsername();

    String getPassword();

    void init();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy