Top Description Fields Constructors Methods
jakarta.faces.event

public Class PostConstructCustomScopeEvent

extends SystemEvent
Class Inheritance
Imports
jakarta.faces.context.FacesContext

This class is provided to allow custom scopes to publish a "post construct" event in the same way that other scopes do to let the application become aware of the beginning of the scope. The runtime must listen for this event and invoke any PostConstruct annotated methods on any of the beans in this scope as appropriate. The following code can be used as a template for publishing such an event.

 

Map<String, Object> myScope = getMyScope();
ScopeContext scopeContext = new ScopeContext("myScope", myScope);
applicationPublishEvent(PostConstructCustomScopeEvent.class, scopeContext);

 
Since
2.0

Field Summary

Modifier and TypeField and Description
private static final long

Constructor Summary

AccessConstructor and Description
public
PostConstructCustomScopeEvent(ScopeContext
A structure that contains the name of the scope and the scope itself exposed as a Map<String, Object>.
scopeContext
)

An instance of this event indicates that the custom scope enclosed within the argument scopeContext was just created.

public
PostConstructCustomScopeEvent(FacesContext
the Faces context.
facesContext
,
ScopeContext
A structure that contains the name of the scope and the scope itself exposed as a Map<String, Object>.
scopeContext
)

An instance of this event indicates that the custom scope enclosed within the argument scopeContext was just created.

Method Summary

Modifier and TypeMethod and Description
public ScopeContext

Returns:

the scope context.
getContext
()

Return the ScopeContext for this event.

Inherited from jakarta.faces.event.SystemEvent:
getFacesContextisAppropriateListenerprocessListener

Field Detail

serialVersionUIDback to summary
private static final long serialVersionUID

Hides jakarta.faces.event.SystemEvent.serialVersionUID.

Constructor Detail

PostConstructCustomScopeEventback to summary
public PostConstructCustomScopeEvent(ScopeContext scopeContext)

An instance of this event indicates that the custom scope enclosed within the argument scopeContext was just created.

Parameters
scopeContext:ScopeContext

A structure that contains the name of the scope and the scope itself exposed as a Map<String, Object>.

PostConstructCustomScopeEventback to summary
public PostConstructCustomScopeEvent(FacesContext facesContext, ScopeContext scopeContext)

An instance of this event indicates that the custom scope enclosed within the argument scopeContext was just created.

Parameters
facesContext:FacesContext

the Faces context.

scopeContext:ScopeContext

A structure that contains the name of the scope and the scope itself exposed as a Map<String, Object>.

Method Detail

getContextback to summary
public ScopeContext getContext()

Return the ScopeContext for this event.

Returns:ScopeContext

the scope context.