Interface AppEventListenerProvider


  • public interface AppEventListenerProvider
    This is the SPI (i.e., Service Provider Interface) for registering the event listener for the application.
    • Method Detail

      • onAppInit

        default void onAppInit​(ContainerServices containerServices)
        Called when the application is initialized. All the global objects are available at this point.
        Parameters:
        containerServices -
      • onAppDestroy

        default void onAppDestroy​(ContainerServices containerServices)
        Called when the application is about to be shut down.
        Parameters:
        containerServices -
      • onUserLogout

        default void onUserLogout​(ContainerServices containerServices)
        Called when a user is logged out.
        Parameters:
        containerServices -