Make the event listeners in FullTextIndexEventListener class virtual
Description
This patch makes the event listeners in class FullTextIndexEventListener virtual so that you can override them in your own implementation. A use case for this would be that you never delete entities in your application. A delete just puts the property "deleted" on true for example. Then the built in event listener for post-update does not do the trick.
This patch makes the event listeners in class FullTextIndexEventListener virtual so that you can override them in your own implementation.
A use case for this would be that you never delete entities in your application. A delete just puts the property "deleted" on true for example. Then the built in event listener for post-update does not do the trick.