Package org.hibernate.sql.exec.internal
Class CallbackImpl
- java.lang.Object
-
- org.hibernate.sql.exec.internal.CallbackImpl
-
-
Constructor Summary
Constructors Constructor Description CallbackImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanhasAfterLoadActions()voidinvokeAfterLoadActions(Object entity, EntityMappingType entityMappingType, SharedSessionContractImplementor session)Invoke all registered actionsvoidregisterAfterLoadAction(AfterLoadAction afterLoadAction)Register a callback action-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.hibernate.sql.exec.spi.Callback
invokeAfterLoadActions
-
-
-
-
Method Detail
-
registerAfterLoadAction
public void registerAfterLoadAction(AfterLoadAction afterLoadAction)
Description copied from interface:CallbackRegister a callback action- Specified by:
registerAfterLoadActionin interfaceCallback
-
invokeAfterLoadActions
public void invokeAfterLoadActions(Object entity, EntityMappingType entityMappingType, SharedSessionContractImplementor session)
Description copied from interface:CallbackInvoke all registered actions- Specified by:
invokeAfterLoadActionsin interfaceCallback
-
hasAfterLoadActions
public boolean hasAfterLoadActions()
- Specified by:
hasAfterLoadActionsin interfaceCallback
-
-