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

org.hibernate.engine.jdbc.spi.InvalidatableWrapper Maven / Gradle / Ivy

/*
 * 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.spi;


/**
 * Specialized {@link JdbcWrapper} contract for wrapped objects that can additioanlly be invalidated
 *
 * @author Steve Ebersole
 */
public interface InvalidatableWrapper extends JdbcWrapper {
	/**
	 * Make the wrapper invalid for further usage.
	 */
	public void invalidate();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy