Open Source Repository

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



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

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

/**
 * An event that occurs after a collection is updated
 *
 @author Gail Badner
 */
public class PostCollectionUpdateEvent extends AbstractCollectionEvent {

  public PostCollectionUpdateEvent(CollectionPersister collectionPersister,
                   PersistentCollection collection,
                   EventSource source) {
    supercollectionPersister, collection, source,
        getLoadedOwnerOrNullcollection, source ),
        getLoadedOwnerIdOrNullcollection, source ) );
  }
}