Package io.jmix.data.listener
Interface BeforeInsertEntityListener<T>
- All Known Implementing Classes:
- ImapMailboxListener
public interface BeforeInsertEntityListener<T>
Defines the contract for handling entities before they have been inserted into DB.
- 
Method SummaryModifier and TypeMethodDescriptionvoidonBeforeInsert(T entity) Executes before the object has been inserted into DB.
- 
Method Details- 
onBeforeInsertExecutes before the object has been inserted into DB.- Parameters:
- entity- inserted entity instance
 
 
-