com.aol.micro.server.spring.datasource.DataSourceBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of micro-jdbc Show documentation
Show all versions of micro-jdbc Show documentation
Opinionated rest microservices
package com.aol.micro.server.spring.datasource;
import javax.sql.DataSource;
public interface DataSourceBuilder {
public DataSource buildDataSource(String classname, String url, String username, String password, int maxPoolsize);
}