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

org.hibernate.engine.jdbc.connections.internal.ConnectionValidator Maven / Gradle / Ivy

There is a newer version: 7.0.0.Alpha1
Show newest version
/*
 * Hibernate, Relational Persistence for Idiomatic Java
 *
 * License: GNU Lesser General Public License (LGPL), version 2.1 or later.
 * See the lgpl.txt file in the root directory or .
 */
package org.hibernate.engine.jdbc.connections.internal;

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

/**
 * Contract for validating JDBC Connections
 *
 * @author Christian Beikov
 */
public interface ConnectionValidator {

	ConnectionValidator ALWAYS_VALID = connection -> true;

	/**
	 * Checks if the connection is still valid
	 *
	 * @return true if the connection is valid, false otherwise
	 * @throws SQLException when an error happens due to the connection usage leading to a connection close
	 */
	boolean isValid(Connection connection) throws SQLException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy