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