Interface WebAppInitializer


public interface WebAppInitializer
This interface describes classes to be called by the WebAppInitUtil.
Author:
sts
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
    Indicates if the initialization process of this WebAppInitializer was successful.
    void
    Is called when this WebAppInitializer is removed from the list of all WebAppInitializers in WebAppInitUtil.
    void
    Is called when the web application is shutdown.
    void
    Is called when the web application is initialized.
  • Method Details

    • onWepAppInit

      void onWepAppInit()
      Is called when the web application is initialized.
    • onWepAppDestroy

      void onWepAppDestroy()
      Is called when the web application is shutdown.
    • onRemove

      void onRemove()
      Is called when this WebAppInitializer is removed from the list of all WebAppInitializers in WebAppInitUtil.
    • initializedSuccessfully

      boolean initializedSuccessfully()
      Indicates if the initialization process of this WebAppInitializer was successful.
      Returns:
      true if the initialization process of this WebAppInitializer was successful, false otherwise.