gu.sql2java.IDataSourceConfig Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sql2java-base Show documentation
Show all versions of sql2java-base Show documentation
sql2java common class package
package gu.sql2java;
/**
* interface for datasource configuration
* @author guyadong
*
*/
public interface IDataSourceConfig {
String getJdbcPassword();
String getJdbcUsername();
String getJdbcUrl();
String getJdbcDriver();
}