1 //$Id: FlushEntityEventListener.java,v 1.1 2004/08/28 08:38:24 oneovthafew Exp $2 package org.hibernate.event;3 4 import org.hibernate.HibernateException;5 6 /**7 * @author Gavin King8 */9 public interface FlushEntityEventListener {10 public void onFlushEntity(FlushEntityEvent event) throws HibernateException;11 }12