Uses of Class
org.hibernate.event.AbstractEvent

Packages that use AbstractEvent
org.hibernate.event This package defines an event framework for Hibernate. 
org.hibernate.event.def This package defines a default set of event listeners that implements the default behaviors of Hibernate. 
 

Uses of AbstractEvent in org.hibernate.event
 

Subclasses of AbstractEvent in org.hibernate.event
 class AutoFlushEvent
          Defines an event class for the auto-flushing of a session.
 class DeleteEvent
          Defines an event class for the deletion of an entity.
 class DirtyCheckEvent
          Defines an event class for the dirty-checking of a session.
 class EvictEvent
          Defines an event class for the evicting of an entity.
 class FlushEntityEvent
           
 class FlushEvent
          Defines an event class for the flushing of a session.
 class InitializeCollectionEvent
          An event that occurs when a collection wants to be initialized
 class LoadEvent
          Defines an event class for the loading of an entity.
 class LockEvent
          Defines an event class for the locking of an entity.
 class MergeEvent
          An event class for merge() and saveOrUpdateCopy()
 class PersistEvent
          An event class for persist()
 class PostLoadEvent
          Occurs after an an entity instance is fully loaded.
 class PreLoadEvent
          Called before injecting property values into a newly loaded entity instance.
 class RefreshEvent
          Defines an event class for the refreshing of an object.
 class ReplicateEvent
          Defines an event class for the replication of an entity.
 class SaveOrUpdateEvent
          An event class for saveOrUpdate()
 

Uses of AbstractEvent in org.hibernate.event.def
 

Methods in org.hibernate.event.def with parameters of type AbstractEvent
protected  EntityEntry AbstractReassociateEventListener.reassociate(AbstractEvent event, Object object, Serializable id, EntityPersister persister)
          Associates a given entity (either transient or associated with another session) to the given session.