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
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Deprecated Methods Modifier and Type Method Description void
afterLoad(Object entity, EntityMappingType entityMappingType, SharedSessionContractImplementor session)
The action trigger - theentity
is being loadeddefault void
afterLoad(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 Detail
-
afterLoad
void afterLoad(Object entity, EntityMappingType entityMappingType, SharedSessionContractImplementor session)
The action trigger - theentity
is being loaded
-
afterLoad
@Deprecated(since="6", forRemoval=true) default void afterLoad(SharedSessionContractImplementor session, Object entity, Loadable persister)
Deprecated, for removal: This API element is subject to removal in a future version.Use the updated form
-
-