Package org.hibernate.sql.exec.internal
Class CallbackNoOp
- java.lang.Object
-
- org.hibernate.sql.exec.internal.CallbackNoOp
-
-
Field Summary
Fields Modifier and Type Field Description static CallbackNoOp
NO_OP_CALLBACK
Singleton access
-
Constructor Summary
Constructors Constructor Description CallbackNoOp()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
hasAfterLoadActions()
void
invokeAfterLoadActions(Object entity, EntityMappingType entityMappingType, SharedSessionContractImplementor session)
Invoke all registered actionsvoid
registerAfterLoadAction(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
-
-
-
-
Field Detail
-
NO_OP_CALLBACK
public static final CallbackNoOp NO_OP_CALLBACK
Singleton access
-
-
Method Detail
-
registerAfterLoadAction
public void registerAfterLoadAction(AfterLoadAction afterLoadAction)
Description copied from interface:Callback
Register a callback action- Specified by:
registerAfterLoadAction
in interfaceCallback
-
invokeAfterLoadActions
public void invokeAfterLoadActions(Object entity, EntityMappingType entityMappingType, SharedSessionContractImplementor session)
Description copied from interface:Callback
Invoke all registered actions- Specified by:
invokeAfterLoadActions
in interfaceCallback
-
hasAfterLoadActions
public boolean hasAfterLoadActions()
- Specified by:
hasAfterLoadActions
in interfaceCallback
-
-