Package com.sun.faces.config
Class ConfigureListener
- java.lang.Object
-
- com.sun.faces.config.ConfigureListener
-
- All Implemented Interfaces:
jakarta.servlet.http.HttpSessionListener,jakarta.servlet.ServletContextListener,jakarta.servlet.ServletRequestListener,EventListener
public class ConfigureListener extends Object implements jakarta.servlet.ServletRequestListener, jakarta.servlet.http.HttpSessionListener, jakarta.servlet.ServletContextListener
Parse all relevant Faces configuration resources, and configure the Mojarra runtime environment.
-
-
Field Summary
Fields Modifier and Type Field Description protected WebappLifecycleListenerwebAppListenerprotected WebConfigurationwebConfig
-
Constructor Summary
Constructors Constructor Description ConfigureListener()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidcontextDestroyed(jakarta.servlet.ServletContextEvent sce)voidcontextInitialized(jakarta.servlet.ServletContextEvent servletContextEvent)voidrequestDestroyed(jakarta.servlet.ServletRequestEvent event)voidrequestInitialized(jakarta.servlet.ServletRequestEvent event)voidsessionCreated(jakarta.servlet.http.HttpSessionEvent event)voidsessionDestroyed(jakarta.servlet.http.HttpSessionEvent event)
-
-
-
Field Detail
-
webAppListener
protected WebappLifecycleListener webAppListener
-
webConfig
protected WebConfiguration webConfig
-
-
Method Detail
-
contextInitialized
public void contextInitialized(jakarta.servlet.ServletContextEvent servletContextEvent)
- Specified by:
contextInitializedin interfacejakarta.servlet.ServletContextListener
-
contextDestroyed
public void contextDestroyed(jakarta.servlet.ServletContextEvent sce)
- Specified by:
contextDestroyedin interfacejakarta.servlet.ServletContextListener
-
requestDestroyed
public void requestDestroyed(jakarta.servlet.ServletRequestEvent event)
- Specified by:
requestDestroyedin interfacejakarta.servlet.ServletRequestListener
-
requestInitialized
public void requestInitialized(jakarta.servlet.ServletRequestEvent event)
- Specified by:
requestInitializedin interfacejakarta.servlet.ServletRequestListener
-
sessionCreated
public void sessionCreated(jakarta.servlet.http.HttpSessionEvent event)
- Specified by:
sessionCreatedin interfacejakarta.servlet.http.HttpSessionListener
-
sessionDestroyed
public void sessionDestroyed(jakarta.servlet.http.HttpSessionEvent event)
- Specified by:
sessionDestroyedin interfacejakarta.servlet.http.HttpSessionListener
-
-