All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.hibernate.event.PostCollectionUpdateEvent Maven / Gradle / Ivy

There is a newer version: 7.0.0.Alpha1
Show newest version
//$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) {
		super( collectionPersister, collection, source,
				getLoadedOwnerOrNull( collection, source ),
				getLoadedOwnerIdOrNull( collection, source ) );
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy