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

Contract for injecting the registry of Callbacks into event listeners.
Author:Emmanuel Bernard, Steve Ebersole
/** * Contract for injecting the registry of Callbacks into event listeners. * * @author Emmanuel Bernard * @author Steve Ebersole */
public interface CallbackRegistryConsumer {
Injection of the CallbackRegistry
Params:
  • callbackRegistry – The CallbackRegistry
/** * Injection of the CallbackRegistry * * @param callbackRegistry The CallbackRegistry */
void injectCallbackRegistry(CallbackRegistry callbackRegistry); }