FileDocCategorySizeDatePackage
ConnectionWrapper.javaAPI DocHibernate 3.2.5410Fri Nov 03 09:23:02 GMT 2006org.hibernate.jdbc

ConnectionWrapper.java

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();
}