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

org.hibernate.jpa.event.spi.CallbackRegistrar Maven / Gradle / Ivy

There is a newer version: 5.6.15.Final
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 http://www.gnu.org/licenses/lgpl-2.1.html
 */
package org.hibernate.jpa.event.spi;

public interface CallbackRegistrar extends CallbackRegistry {

	/**
	 * Register the callback against the given entity.
	 *
	 * @param entityClass The entity Class to register the Callbacks against
	 * @param callbacks The Callbacks to register against the given entity Class
	 */
	void registerCallbacks(Class entityClass, Callback[] callbacks);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy