Open Source Repository

Home /hibernate/hibernate-3.2.7.ga | Repository Home



org/hibernate/event/InitializeCollectionEventListener.java
//$Id: InitializeCollectionEventListener.java 4345 2004-08-16 12:12:12Z oneovthafew $
package org.hibernate.event;

import org.hibernate.HibernateException;

import java.io.Serializable;

/**
 * Defines the contract for handling of collection initialization events 
 * generated by a session.
 *
 @author Gavin King
 */
public interface InitializeCollectionEventListener extends Serializable {

  public void onInitializeCollection(InitializeCollectionEvent eventthrows HibernateException;

}