Open Source Repository

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



org/hibernate/event/PreCollectionRemoveEvent.java
//$Id: $
package org.hibernate.event;

import org.hibernate.collection.PersistentCollection;
import org.hibernate.persister.collection.CollectionPersister;

/**
 * An event that occurs before a collection is removed
 *
 @author Gail Badner
 */
public class PreCollectionRemoveEvent extends AbstractCollectionEvent {

  public PreCollectionRemoveEvent(CollectionPersister collectionPersister,
                  PersistentCollection collection,
                  EventSource source,
                  Object loadedOwner) {
    supercollectionPersister, collection, source,
        loadedOwner,
        getOwnerIdOrNullloadedOwner, source ) );
  }
}