Package io.jmix.data.listener
Interface AfterInsertEntityListener<T>
- All Known Implementing Classes:
ImapMailboxListener
public interface AfterInsertEntityListener<T>
Defines the contract for handling entities after they have been inserted into DB.
-
Method Summary
Modifier and TypeMethodDescriptionvoid
onAfterInsert
(T entity) Executes after the object has been inserted into DB.
-
Method Details
-
onAfterInsert
Executes after the object has been inserted into DB.Modification of the entity state or using
EntityManager
is impossible here.- Parameters:
entity
- inserted entity
-