Package org.hibernate.engine.spi
Class CascadingActions.BaseCascadingAction<T>
- java.lang.Object
-
- org.hibernate.engine.spi.CascadingActions.BaseCascadingAction<T>
-
- All Implemented Interfaces:
CascadingAction<T>
- Enclosing class:
- CascadingActions
public abstract static class CascadingActions.BaseCascadingAction<T> extends Object implements CascadingAction<T>
-
-
Constructor Summary
Constructors Constructor Description BaseCascadingAction()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description @Nullable ForeignKeyDirectiondirectionAffectedByCascadeDelete()The cascade direction in which we care whether the foreign key is declared withon delete cascade.booleanperformOnLazyProperty()Should this action be performed (or noCascade consulted) in the case of lazy properties.-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.hibernate.engine.spi.CascadingAction
cascade, deleteOrphans, getCascadableChildrenIterator, noCascade, requiresNoCascadeChecking
-
-
-
-
Method Detail
-
performOnLazyProperty
public boolean performOnLazyProperty()
Description copied from interface:CascadingActionShould this action be performed (or noCascade consulted) in the case of lazy properties.- Specified by:
performOnLazyPropertyin interfaceCascadingAction<T>
-
directionAffectedByCascadeDelete
public @Nullable ForeignKeyDirection directionAffectedByCascadeDelete()
Description copied from interface:CascadingActionThe cascade direction in which we care whether the foreign key is declared withon delete cascade.- Specified by:
directionAffectedByCascadeDeletein interfaceCascadingAction<T>
-
-