
org.sqlproc.engine.SqlSessionFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sql-processor Show documentation
Show all versions of sql-processor Show documentation
SQL Processor - Data Driven Queries
package org.sqlproc.engine;
/**
* The factory definition, which can be used to construct the {@link SqlSession} instances.
*
*
* The factory can be based on Spring DI framework for example.
*
*
* For more info please see the Tutorials.
*
* @author Vladimir Hudec
*/
public interface SqlSessionFactory {
/**
* The main contract of this factory.
*
* @return the instance of the SqlSession
*/
SqlSession getSqlSession();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy