Uses of Class
org.hibernate.event.spi.AbstractCollectionEvent
-
Packages that use AbstractCollectionEvent Package Description org.hibernate.envers.event.spi org.hibernate.event.spi Defines the event types and event listener interfaces for events produced by the statefulSession
. -
-
Uses of AbstractCollectionEvent in org.hibernate.envers.event.spi
Methods in org.hibernate.envers.event.spi with parameters of type AbstractCollectionEvent Modifier and Type Method Description protected CollectionEntry
BaseEnversCollectionEventListener. getCollectionEntry(AbstractCollectionEvent event)
protected Serializable
BaseEnversCollectionEventListener. initializeCollection(AbstractCollectionEvent event)
Forces persistent collection initialization.protected void
BaseEnversCollectionEventListener. onCollectionAction(AbstractCollectionEvent event, PersistentCollection newColl, Serializable oldColl, CollectionEntry collectionEntry)
protected void
BaseEnversCollectionEventListener. onCollectionActionInversed(AbstractCollectionEvent event, PersistentCollection newColl, Serializable oldColl, CollectionEntry collectionEntry)
protected boolean
BaseEnversCollectionEventListener. shouldGenerateRevision(AbstractCollectionEvent event)
Checks whether modification of not-owned relation field triggers new revision and owner entity is versioned. -
Uses of AbstractCollectionEvent in org.hibernate.event.spi
Subclasses of AbstractCollectionEvent in org.hibernate.event.spi Modifier and Type Class Description class
InitializeCollectionEvent
An event that occurs when a collection wants to be initializedclass
PostCollectionRecreateEvent
An event that occurs after a collection is recreatedclass
PostCollectionRemoveEvent
An event that occurs after a collection is removedclass
PostCollectionUpdateEvent
An event that occurs after a collection is updatedclass
PreCollectionRecreateEvent
An event that occurs before a collection is recreatedclass
PreCollectionRemoveEvent
An event that occurs before a collection is removedclass
PreCollectionUpdateEvent
An event that occurs before a collection is updated
-