Uses of Interface
jakarta.faces.event.PhaseListener
-
Packages that use PhaseListener Package Description com.sun.faces.lifecycle jakarta.faces.component Fundamental APIs for user interface components.jakarta.faces.lifecycle Classes and interfaces defining lifecycle management for the Jakarta Faces implementation. -
-
Uses of PhaseListener in com.sun.faces.lifecycle
Classes in com.sun.faces.lifecycle that implement PhaseListener Modifier and Type Class Description classELResolverInitPhaseListenerThis class is used to register the FacesELResolverstack with the Jakarta Server Pages container.classHttpMethodRestrictionsPhaseListenerMethods in com.sun.faces.lifecycle that return PhaseListener Modifier and Type Method Description PhaseListener[]LifecycleImpl. getPhaseListeners()Methods in com.sun.faces.lifecycle with parameters of type PhaseListener Modifier and Type Method Description voidLifecycleImpl. addPhaseListener(PhaseListener listener)voidLifecycleImpl. removePhaseListener(PhaseListener listener)Method parameters in com.sun.faces.lifecycle with type arguments of type PhaseListener Modifier and Type Method Description voidPhase. doPhase(FacesContext context, Lifecycle lifecycle, ListIterator<PhaseListener> listeners)Performs PhaseListener processing and invokes the execute method of the Phase.voidRestoreViewPhase. doPhase(FacesContext context, Lifecycle lifecycle, ListIterator<PhaseListener> listeners)protected voidPhase. handleAfterPhase(FacesContext context, ListIterator<PhaseListener> listenersIterator, PhaseEvent event)HandleafterPhasePhaseListenerevents.protected voidPhase. handleBeforePhase(FacesContext context, ListIterator<PhaseListener> listenersIterator, PhaseEvent event)HandlebeforePhasePhaseListenerevents. -
Uses of PhaseListener in jakarta.faces.component
Methods in jakarta.faces.component that return types with arguments of type PhaseListener Modifier and Type Method Description List<PhaseListener>UIViewRoot. getPhaseListeners()Return an unmodifiable list of thePhaseListenerinstances attached to thisUIViewRootinstance.Methods in jakarta.faces.component with parameters of type PhaseListener Modifier and Type Method Description voidUIViewRoot. addPhaseListener(PhaseListener newPhaseListener)voidUIViewRoot. removePhaseListener(PhaseListener toRemove)If the argumenttoRemoveis in the list ofPhaseListeners for this instance, it must be removed. -
Uses of PhaseListener in jakarta.faces.lifecycle
Methods in jakarta.faces.lifecycle that return PhaseListener Modifier and Type Method Description abstract PhaseListener[]Lifecycle. getPhaseListeners()Return the set of registeredPhaseListeners for thisLifecycleinstance.PhaseListener[]LifecycleWrapper. getPhaseListeners()Methods in jakarta.faces.lifecycle with parameters of type PhaseListener Modifier and Type Method Description abstract voidLifecycle. addPhaseListener(PhaseListener listener)Register a newPhaseListenerinstance that is interested in being notified before and after the processing for standard phases of the request processing lifecycle.voidLifecycleWrapper. addPhaseListener(PhaseListener listener)abstract voidLifecycle. removePhaseListener(PhaseListener listener)Deregister an existingPhaseListenerinstance that is no longer interested in being notified before and after the processing for standard phases of the request processing lifecycle.voidLifecycleWrapper. removePhaseListener(PhaseListener listener)
-