Package org.hibernate.loader.ast.spi
Interface AfterLoadAction
public interface AfterLoadAction
An action to be performed after an entity has been loaded. E.g. applying locks
- Author:
- Steve Ebersole
-
Method Summary
Modifier and TypeMethodDescriptionvoidafterLoad(Object entity, EntityMappingType entityMappingType, SharedSessionContractImplementor session) The action trigger - theentityis being loadeddefault voidafterLoad(SharedSessionContractImplementor session, Object entity, Loadable persister) Deprecated, for removal: This API element is subject to removal in a future version.Use the updated form
-
Method Details