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> voidCascade. 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> voidCascade. 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 classCascadingActions.BaseCascadingAction<T>Fields in org.hibernate.engine.spi declared as CascadingAction Modifier and Type Field Description static CascadingAction<DeleteContext>CascadingActions. DELETEstatic CascadingAction<Void>CascadingActions. EVICTstatic CascadingAction<LockOptions>CascadingActions. LOCKstatic CascadingAction<MergeContext>CascadingActions. MERGEstatic CascadingAction<PersistContext>CascadingActions. PERSISTstatic CascadingAction<PersistContext>CascadingActions. PERSIST_ON_FLUSHExecute persist during flush timestatic CascadingAction<RefreshContext>CascadingActions. REFRESHstatic CascadingAction<ReplicationMode>CascadingActions. REPLICATEstatic CascadingAction<PersistContext>CascadingActions. SAVE_UPDATEMethods in org.hibernate.engine.spi with parameters of type CascadingAction Modifier and Type Method Description booleanCascadeStyle. doCascade(CascadingAction action)For this style, should the given action be cascaded?booleanCascadeStyles.MultipleCascadeStyle. doCascade(CascadingAction action)booleanCascadeStyle. reallyDoCascade(CascadingAction action)Probably more aptly named something like doCascadeToCollectionElements(); it is however used from both the collection and to-one logic branches...booleanCascadeStyles.BaseCascadeStyle. reallyDoCascade(CascadingAction action)booleanCascadeStyles.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()protected CascadingAction<PersistContext>DefaultSaveOrUpdateEventListener. getCascadeAction()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 CascadingActionCascadingFetchProfile. getCascadingAction()
-