Package com.saperion.web
Interface WebAppInitializer
public interface WebAppInitializer
This interface describes classes to be called by the WebAppInitUtil.
- Author:
- sts
-
Method Summary
Modifier and TypeMethodDescriptionboolean
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
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.
-