Uses of Interface
org.hibernate.engine.spi.CascadingAction
-
Packages that use CascadingAction Package Description org.hibernate.engine.internal Support for many of the internal workings of Hibernate.org.hibernate.engine.spi This package defines some central internal SPI abstractions used throughout the implementation of Hibernate.org.hibernate.event.internal This package defines a default set of event listeners that implement the default behaviors of Hibernate session operations.org.hibernate.loader.ast.spi -
-
Uses of CascadingAction in org.hibernate.engine.internal
Methods in org.hibernate.engine.internal with parameters of type CascadingAction Modifier and Type Method Description static <T> void
Cascade. cascade(CascadingAction<T> action, CascadePoint cascadePoint, EventSource eventSource, EntityPersister persister, Object parent)
Cascade an action from the parent entity instance to all its children.static <T> void
Cascade. cascade(CascadingAction<T> action, CascadePoint cascadePoint, EventSource eventSource, EntityPersister persister, Object parent, T anything)
Cascade an action from the parent entity instance to all its children. -
Uses of CascadingAction in org.hibernate.engine.spi
Classes in org.hibernate.engine.spi that implement CascadingAction Modifier and Type Class Description static class
CascadingActions.BaseCascadingAction<T>
Fields in org.hibernate.engine.spi declared as CascadingAction Modifier and Type Field Description static CascadingAction<DeleteContext>
CascadingActions. DELETE
static CascadingAction<Void>
CascadingActions. EVICT
static CascadingAction<LockOptions>
CascadingActions. LOCK
static CascadingAction<MergeContext>
CascadingActions. MERGE
static CascadingAction<PersistContext>
CascadingActions. PERSIST
static CascadingAction<PersistContext>
CascadingActions. PERSIST_ON_FLUSH
Execute persist during flush timestatic CascadingAction<RefreshContext>
CascadingActions. REFRESH
static CascadingAction<ReplicationMode>
CascadingActions. REPLICATE
static CascadingAction<PersistContext>
CascadingActions. SAVE_UPDATE
Methods in org.hibernate.engine.spi with parameters of type CascadingAction Modifier and Type Method Description boolean
CascadeStyle. doCascade(CascadingAction action)
For this style, should the given action be cascaded?boolean
CascadeStyles.MultipleCascadeStyle. doCascade(CascadingAction action)
boolean
CascadeStyle. reallyDoCascade(CascadingAction action)
Probably more aptly named something like doCascadeToCollectionElements(); it is however used from both the collection and to-one logic branches...boolean
CascadeStyles.BaseCascadeStyle. reallyDoCascade(CascadingAction action)
boolean
CascadeStyles.MultipleCascadeStyle. reallyDoCascade(CascadingAction action)
-
Uses of CascadingAction in org.hibernate.event.internal
Methods in org.hibernate.event.internal that return CascadingAction Modifier and Type Method Description protected abstract CascadingAction<C>
AbstractSaveEventListener. getCascadeAction()
protected CascadingAction<MergeContext>
DefaultMergeEventListener. getCascadeAction()
protected CascadingAction<PersistContext>
DefaultPersistEventListener. getCascadeAction()
protected CascadingAction<PersistContext>
DefaultPersistOnFlushEventListener. getCascadeAction()
protected CascadingAction<ReplicationMode>
DefaultReplicateEventListener. getCascadeAction()
Deprecated.protected CascadingAction<PersistContext>
DefaultSaveOrUpdateEventListener. getCascadeAction()
Deprecated.protected CascadingAction<PersistContext>
AbstractFlushingEventListener. getCascadingAction()
-
Uses of CascadingAction in org.hibernate.loader.ast.spi
Methods in org.hibernate.loader.ast.spi that return CascadingAction Modifier and Type Method Description CascadingAction
CascadingFetchProfile. getCascadingAction()
-