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

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

There is a newer version: 3.6.0.Beta2
Show newest version
//$Id: $
package org.hibernate.event;

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

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

	public PreCollectionRecreateEvent(CollectionPersister collectionPersister,
									  PersistentCollection collection,
									  EventSource source) {
		super( collectionPersister, collection, source,
				collection.getOwner(),
				getOwnerIdOrNull( collection.getOwner(), source ) );
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy