public interface ActionManagerIF
| Modifier and Type | Method and Description |
|---|---|
void |
actionComplete(ActionHandler actionHandler)
Again, this method can be used by an "action handler wrapper" to
notify the action manager when an action handler exits its run() method
normally.
|
void |
actionFailed(ActionHandler actionHandler,
Exception ex)
This method allows for use of an "action handler wrapper" that
will catch any exceptions thrown from an action handler's run()
method.
|
void |
registerAction(ActionFactory<?,?> factory)
Registers a factory for a particular action trigger.
|
void registerAction(ActionFactory<?,?> factory) throws org.dmd.util.exceptions.ResultException
factory - the factory that creates handlers for the actionorg.dmd.util.exceptions.ResultException - if we already have a registered handle for the actionvoid actionFailed(ActionHandler actionHandler, Exception ex)
actionHandler - the action handler that failed.ex - the exception that was caught.void actionComplete(ActionHandler actionHandler)
actionHandler - Copyright © 2019. All rights reserved.