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

org.javers.repository.sql.ConnectionProvider Maven / Gradle / Ivy

package org.javers.repository.sql;

import java.sql.Connection;
import java.sql.SQLException;

/**
 * Implementation should provide working JDBC connection,
 * exactly the same which is used by user's application in the current thread.
 * 
* * Usually, connections come from some thread-safe connection pool. */ public interface ConnectionProvider { Connection getConnection() throws SQLException; }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy