|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object java.util.EventObject javax.faces.event.SystemEvent javax.faces.event.PreDestroyCustomScopeEvent
public class PreDestroyCustomScopeEvent
This class is provided to allow custom
scopes to publish a "pre 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
PreDestroy
annotated methods on any of the beans in this
scope as appropriate. See the example code on PostConstructCustomScopeEvent
for a usage example, replacing classes
as appropriate to make sense for this class.
Field Summary |
---|
Fields inherited from class java.util.EventObject |
---|
source |
Constructor Summary | |
---|---|
PreDestroyCustomScopeEvent(ScopeContext scopeContext)
An instance of this event indicates
that the custom scope enclosed within the argument
|
Method Summary | |
---|---|
ScopeContext |
getContext()
Return the |
Methods inherited from class javax.faces.event.SystemEvent |
---|
isAppropriateListener, processListener |
Methods inherited from class java.util.EventObject |
---|
getSource, toString |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Constructor Detail |
---|
public PreDestroyCustomScopeEvent(ScopeContext scopeContext)
An instance of this event indicates
that the custom scope enclosed within the argument
scopeContext
is about to end.
scopeContext
- A structure that contains the name of the
scope and the scope itself exposed as a Map<String,
Object>
.Method Detail |
---|
public ScopeContext getContext()
Return the ScopeContext
for this event.
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |