Package org.apache.myfaces.webapp
Interface StartupListener
public interface StartupListener
Startup 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 SummaryModifier and TypeMethodDescriptionvoidpostDestroy(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 Details- 
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
 
 
-