Open Source Repository

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



org/hibernate/event/PreCollectionUpdateEventListener.java
package org.hibernate.event;

import java.io.Serializable;

/**
 * Called before updating a collection
 *
 @author Gail Badner
 */
public interface PreCollectionUpdateEventListener extends Serializable {
  public void onPreUpdateCollection(PreCollectionUpdateEvent event);
}