Interface CompanyIndexListener
public interface CompanyIndexListener
-
Method Summary
Modifier and TypeMethodDescriptiondefault void
onAfterCreate
(String indexName) This method is called after a company index is created.default void
onBeforeDelete
(String indexName) This method is called before a company index is deleted.
-
Method Details
-
onAfterCreate
This method is called after a company index is created. Override this method to implement specific logic to be executed after index creation.- Parameters:
indexName
- The name of the newly created company index.
-
onBeforeDelete
This method is called before a company index is deleted. Override this method to implement specific logic to be executed before index deletion.- Parameters:
indexName
- The name of the company index to delete.
-