Package com.saperion.web
Interface WebAppInitializer
-
public interface WebAppInitializerThis interface describes classes to be called by the WebAppInitUtil.- Author:
- sts
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleaninitializedSuccessfully()Indicates if the initialization process of this WebAppInitializer was successful.voidonRemove()Is called when this WebAppInitializer is removed from the list of all WebAppInitializers in WebAppInitUtil.voidonWepAppDestroy()Is called when the web application is shutdown.voidonWepAppInit()Is called when the web application is initialized.
-
-
-
Method Detail
-
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.
-
-