Uses of Interface
jakarta.el.ELContextListener
-
Uses of ELContextListener in jakarta.faces.application
Modifier and TypeMethodDescriptionApplication.getELContextListeners()
If no calls have been made toApplication.addELContextListener(jakarta.el.ELContextListener)
, this method must return an empty array.ApplicationWrapper.getELContextListeners()
The default behavior of this method is to callApplication.getELContextListeners()
on the wrappedApplication
object.Modifier and TypeMethodDescriptionvoid
Application.addELContextListener
(ELContextListener listener) Provide a way for Faces applications to register anELContextListener
that will be notified on creation ofELContext
instances.void
ApplicationWrapper.addELContextListener
(ELContextListener listener) The default behavior of this method is to callApplication.addELContextListener(jakarta.el.ELContextListener)
on the wrappedApplication
object.void
Application.removeELContextListener
(ELContextListener listener) Remove the argumentlistener
from the list ofELContextListener
s.void
ApplicationWrapper.removeELContextListener
(ELContextListener listener) The default behavior of this method is to callApplication.removeELContextListener(jakarta.el.ELContextListener)
on the wrappedApplication
object. -
Uses of ELContextListener in jakarta.servlet.jsp
Modifier and TypeMethodDescriptionvoid
JspApplicationContext.addELContextListener
(ELContextListener listener) Registers aELContextListener
s so that context objects can be added whenever a newELContext
is created.