Uses of Class
jakarta.faces.event.PhaseId
Packages that use PhaseId
-
Uses of PhaseId in jakarta.faces.component
Methods in jakarta.faces.component with parameters of type PhaseIdModifier and TypeMethodDescriptionvoidUIViewRoot.broadcastEvents(FacesContext context, PhaseId phaseId) Broadcast any events that have been queued. -
Uses of PhaseId in jakarta.faces.context
Methods in jakarta.faces.context that return PhaseIdModifier and TypeMethodDescriptionFacesContext.getCurrentPhaseId()Return the value last set on thisFacesContextinstance whenFacesContext.setCurrentPhaseId(jakarta.faces.event.PhaseId)was called.FacesContextWrapper.getCurrentPhaseId()The default behavior of this method is to callFacesContext.getCurrentPhaseId()on the wrappedFacesContextobject.Methods in jakarta.faces.context with parameters of type PhaseIdModifier and TypeMethodDescriptionabstract voidPartialViewContext.processPartial(PhaseId phaseId) Perform lifecycle processing on components during the indicatedphaseId.voidPartialViewContextWrapper.processPartial(PhaseId phaseId) The default behavior of this method is to callPartialViewContext.processPartial(PhaseId)on the wrappedPartialViewContextobject.voidFacesContext.setCurrentPhaseId(PhaseId currentPhaseId) The implementation must call this method at the earliest possble point in time after entering into a new phase in the request processing lifecycle.voidFacesContextWrapper.setCurrentPhaseId(PhaseId currentPhaseId) The default behavior of this method is to callFacesContext.setCurrentPhaseId(PhaseId)on the wrappedFacesContextobject. -
Uses of PhaseId in jakarta.faces.event
Fields in jakarta.faces.event declared as PhaseIdModifier and TypeFieldDescriptionstatic final PhaseIdPhaseId.ANY_PHASEIdentifier that indicates an interest in events, no matter which request processing phase is being performed.static final PhaseIdPhaseId.APPLY_REQUEST_VALUESIdentifier that indicates an interest in events queued for the Apply Request Values phase of the request processing lifecycle.static final PhaseIdPhaseId.INVOKE_APPLICATIONIdentifier that indicates an interest in events queued for the Invoke Application phase of the request processing lifecycle.static final PhaseIdPhaseId.PROCESS_VALIDATIONSIdentifier that indicates an interest in events queued for the Process Validations phase of the request processing lifecycle.static final PhaseIdPhaseId.RENDER_RESPONSEIdentifier for the Render Response phase of the request processing lifecycle.static final PhaseIdPhaseId.RESTORE_VIEWIdentifier that indicates an interest in events queued for the Restore View phase of the request processing lifecycle.static final PhaseIdPhaseId.UPDATE_MODEL_VALUESIdentifier that indicates an interest in events queued for the Update Model Values phase of the request processing lifecycle.Fields in jakarta.faces.event with type parameters of type PhaseIdModifier and TypeFieldDescriptionPhaseId.VALUESList of validPhaseIdinstances, in ascending order of their ordinal value.Methods in jakarta.faces.event that return PhaseIdModifier and TypeMethodDescriptionExceptionQueuedEventContext.getPhaseId()Return thePhaseIdwhich was being processed when the exception was thrown.FacesEvent.getPhaseId()Return the identifier of the request processing phase during which this event should be delivered.PhaseEvent.getPhaseId()Return thePhaseIdrepresenting the current request processing lifecycle phase.PhaseListener.getPhaseId()Return the identifier of the request processing phase during which this listener is interested in processingPhaseEventevents.static PhaseIdPhaseId.phaseIdValueOf(String phase) Return aPhaseIdrepresentation of the argumentphase.Methods in jakarta.faces.event with parameters of type PhaseIdModifier and TypeMethodDescriptionvoidFacesEvent.setPhaseId(PhaseId phaseId) Set thePhaseIdduring which this event will be delivered.Constructors in jakarta.faces.event with parameters of type PhaseIdModifierConstructorDescriptionExceptionQueuedEventContext(FacesContext context, Throwable thrown, UIComponent component, PhaseId phaseId) Instantiate a newExceptionQueuedEventContextthat indicates the argumentThrowablejust occurred, relevant to the argumentcomponent, during the lifecycle phasephaseId.PhaseEvent(FacesContext context, PhaseId phaseId, Lifecycle lifecycle) Construct a new event object from the specified parameters.