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 SummaryModifier and TypeMethodDescriptionvoidonAfterInsert(T entity) Executes after the object has been inserted into DB.
- 
Method Details- 
onAfterInsertExecutes after the object has been inserted into DB.Modification of the entity state or using EntityManageris impossible here.- Parameters:
- entity- inserted entity
 
 
-