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 CallbackNoOpNO_OP_CALLBACKSingleton access
-
Constructor Summary
Constructors Constructor Description CallbackNoOp()
-
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
-
-
-
-
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: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
-
-