1 //$Id: InitializeCollectionEventListener.java,v 1.2 2004/08/16 12:12:12 oneovthafew Exp $2 package org.hibernate.event;3 4 import org.hibernate.HibernateException;5 6 import java.io.Serializable ;7 8 /**9 * Defines the contract for handling of collection initialization events 10 * generated by a session.11 *12 * @author Gavin King13 */14 public interface InitializeCollectionEventListener extends Serializable {15 16 public void onInitializeCollection(InitializeCollectionEvent event) throws HibernateException;17 18 }19