Package org.apache.myfaces.webapp
Interface StartupListener
- 
 public interface StartupListenerStartup Listener for the myfaces init process This interface allows to implement Plugins which then can be hooked into the various stages of our initialisation process to add various plugins which depend on the various phases of the init- Author:
- Werner Punz
 
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description voidpostDestroy(jakarta.servlet.ServletContext context)This method is called after MyFaces is destroyedvoidpostInit(jakarta.servlet.ServletContext context)This method is called after MyFaces has initializedvoidpreDestroy(jakarta.servlet.ServletContext context)This method is called before MyFaces is destroyedvoidpreInit(jakarta.servlet.ServletContext context)This method is called before MyFaces initializes
 
- 
- 
- 
Method Detail- 
preInitvoid preInit(jakarta.servlet.ServletContext context) This method is called before MyFaces initializes- Parameters:
- context- the ServletContext
 
 - 
postInitvoid postInit(jakarta.servlet.ServletContext context) This method is called after MyFaces has initialized- Parameters:
- context- the ServletContext
 
 - 
preDestroyvoid preDestroy(jakarta.servlet.ServletContext context) This method is called before MyFaces is destroyed- Parameters:
- context- the ServletContext
 
 - 
postDestroyvoid postDestroy(jakarta.servlet.ServletContext context) This method is called after MyFaces is destroyed- Parameters:
- context- the ServletContext
 
 
- 
 
-