com.github.napp.database.IConnectionProvider Maven / Gradle / Ivy
/**
*
*/
package com.github.napp.database;
import java.sql.Connection;
/**
* @author Alexandru Bledea
* @since Sep 21, 2013
*/
public interface IConnectionProvider {
/**
*
*/
Connection getConnection();
/**
* @param con
*/
void close(Connection con);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy