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

org.jspringbot.keyword.db.BasicDataSourceManager Maven / Gradle / Ivy

There is a newer version: 1.9
Show newest version
package org.jspringbot.keyword.db;

import org.apache.commons.dbcp.BasicDataSource;

public interface BasicDataSourceManager {

    public static final String DEFAULT_CONNECTION_NAME = "default";

    public void switchConnection(String connectionName);

    public BasicDataSource getCurrentDataSource();

    public BasicDataSource getDataSource(String datasourceName);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy