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

org.hibernate.jdbc.ConnectionWrapper Maven / Gradle / Ivy

package org.hibernate.jdbc;

import java.sql.Connection;

/**
 * Interface implemented by JDBC connection wrappers in order to give
 * access to the underlying wrapped connection.
 *
 * @author Steve Ebersole
 */
public interface ConnectionWrapper {
	/**
	 * Get a reference to the wrapped connection.
	 *
	 * @return The wrapped connection.
	 */
	public Connection getWrappedConnection();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy