public class PostConstructCustomScopeEvent extends SystemEvent
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);
source
Constructor and Description |
---|
PostConstructCustomScopeEvent(FacesContext facesContext,
ScopeContext scopeContext)
An instance of this event indicates that the custom scope enclosed within the argument |
PostConstructCustomScopeEvent(ScopeContext scopeContext)
An instance of this event indicates that the custom scope enclosed within the argument |
Modifier and Type | Method and Description |
---|---|
ScopeContext |
getContext()
Return the |
getFacesContext, isAppropriateListener, processListener
getSource, toString
public PostConstructCustomScopeEvent(ScopeContext scopeContext)
An instance of this event indicates that the custom scope enclosed within the argument scopeContext
was
just created.
scopeContext
- A structure that contains the name of the scope and the scope itself exposed as a
Map<String,
Object>
.public PostConstructCustomScopeEvent(FacesContext facesContext, ScopeContext scopeContext)
An instance of this event indicates that the custom scope enclosed within the argument scopeContext
was
just created.
facesContext
- the Faces context.scopeContext
- A structure that contains the name of the scope and the scope itself exposed as a
Map<String,
Object>
.public ScopeContext getContext()
Return the ScopeContext
for this event.
Copyright © 2018,2020 Eclipse Foundation.
Use is subject to license terms.