com.bixuebihui.datasource.INamingPool Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of c-dbtools Show documentation
Show all versions of c-dbtools Show documentation
a fast small database connection pool and a active record flavor mini framework
package com.bixuebihui.datasource;
import com.bixuebihui.dbcon.DatabaseConfig;
/**
* INamingPool interface.
*
* @author xingwx
* @version $Id: $Id
*/
public interface INamingPool {
/**
* getAlias.
*
* @return a {@link java.lang.String} object.
*/
String getAlias();
/**
* setAlias.
*
* @param alias a {@link java.lang.String} object.
*/
void setAlias(String alias);
/**
* setDatabaseConfig.
*
* @param cfg a {@link DatabaseConfig} object.
*/
void setDatabaseConfig(DatabaseConfig cfg);
}