public interface IActionHandler
An action handler is registered with the action handler factory in the action framework and exists ONCE in the system. The handler should be prepared to run in a threaded environment and should not be stateful.
| Modifier and Type | Method and Description |
|---|---|
COSName |
getActionType()
The type of actions this handler can process.
|
void |
process(TriggerEvent event,
COSObject actionDefinition)
Perform the
actionDefinition in the context of
event. |
COSName getActionType()
This is for example /JavaScript for JavaScript or /GoTo for a jump to another destination in the document.
void process(TriggerEvent event, COSObject actionDefinition) throws ActionException
actionDefinition in the context of
event.event - The cause of the processing.actionDefinition - The processing definition.ActionExceptionCopyright © 2013 intarsys consulting GmbH. All Rights Reserved.