Uses of Interface
jakarta.el.ELContextListener
-
Packages that use ELContextListener Package Description jakarta.faces.application jakarta.servlet.jsp -
-
Uses of ELContextListener in jakarta.faces.application
Methods in jakarta.faces.application that return ELContextListener Modifier and Type Method Description ELContextListener[]
Application. getELContextListeners()
If no calls have been made toApplication.addELContextListener(jakarta.el.ELContextListener)
, this method must return an empty array.ELContextListener[]
ApplicationWrapper. getELContextListeners()
The default behavior of this method is to callApplication.getELContextListeners()
on the wrappedApplication
object.Methods in jakarta.faces.application with parameters of type ELContextListener Modifier and Type Method Description void
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
Methods in jakarta.servlet.jsp with parameters of type ELContextListener Modifier and Type Method Description void
JspApplicationContext. addELContextListener(ELContextListener listener)
Registers aELContextListener
s so that context objects can be added whenever a newELContext
is created.
-