Package org.hibernate.loader.ast.spi
Interface AfterLoadAction
-
public interface AfterLoadActionAn 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 voidafterLoad(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 Detail
-
afterLoad
void afterLoad(Object entity, EntityMappingType entityMappingType, SharedSessionContractImplementor session)
The action trigger - theentityis 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
-
-