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 Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
postDestroy(javax.servlet.ServletContextEvent evt)
This method is called after myfaces is destroyedvoid
postInit(javax.servlet.ServletContextEvent evt)
This method is called after myfaces has initializedvoid
preDestroy(javax.servlet.ServletContextEvent evt)
This method is called before myfaces is destroyedvoid
preInit(javax.servlet.ServletContextEvent evt)
This method is called before myfaces initializes
-
-
-
Method Detail
-
preInit
void preInit(javax.servlet.ServletContextEvent evt)
This method is called before myfaces initializes- Parameters:
evt
- the corresponding servlet context event keeping all the servlet context data and references
-
postInit
void postInit(javax.servlet.ServletContextEvent evt)
This method is called after myfaces has initialized- Parameters:
evt
- the corresponding servlet context event keeping all the servlet context data and references
-
preDestroy
void preDestroy(javax.servlet.ServletContextEvent evt)
This method is called before myfaces is destroyed- Parameters:
evt
- the corresponding servlet context event keeping all the servlet context data and references
-
postDestroy
void postDestroy(javax.servlet.ServletContextEvent evt)
This method is called after myfaces is destroyed- Parameters:
evt
- the corresponding servlet context event keeping all the servlet context data and references
-
-