public interface ActionHandler
| Modifier and Type | Field and Description | 
|---|---|
| static java.lang.String | SUFFIX | 
| Modifier and Type | Method and Description | 
|---|---|
| java.lang.Object | after(ActionExecutionStatus status,
     Action action,
     java.lang.Object[] args,
     java.lang.Object result)Called after the action has been aborted or executed, even if an exception
 occurred during execution. | 
| java.lang.Object[] | before(Action action,
      java.lang.Object[] args)Called before an action is executed. | 
| void | configure(Action action,
         java.lang.reflect.Method method)Inspect the action during the configuration phase. | 
| boolean | exception(java.lang.Exception exception,
         Action action,
         java.lang.Object[] args)Called after the action has been executed when an exception occurred
 during execution. | 
| void | update(Action action)Update the action's properties. | 
static final java.lang.String SUFFIX
void update(@Nonnull
            Action action)
action - the action to be updatedvoid configure(@Nonnull
               Action action,
               @Nonnull
               java.lang.reflect.Method method)
before(), after() and exception().action - the action to be configuredmethod - the method that represents the action itself@Nonnull
java.lang.Object[] before(@Nonnull
                                   Action action,
                                   @Nonnull
                                   java.lang.Object[] args)
AbortActionExecution in
 order to signal that the action should not be invoked. In any case this method
 returns the arguments to be sent to the action, thus allowing the interceptor
 to modify the arguments as it deem necessary. Failure to return an appropriate
 value will most likely cause an error during the action's execution.action - the action to executeargs - the action's argumentsAbortActionExecution - if action execution should be aborted.@Nullable
java.lang.Object after(@Nonnull
                                 ActionExecutionStatus status,
                                 @Nonnull
                                 Action action,
                                 @Nonnull
                                 java.lang.Object[] args,
                                 @Nullable
                                 java.lang.Object result)
status - a flag that indicates the execution status of the actionaction - the action to executeargs - the arguments sent to the actionresult - the result of executing the actionboolean exception(@Nonnull
                  java.lang.Exception exception,
                  @Nonnull
                  Action action,
                  @Nonnull
                  java.lang.Object[] args)
exception - the exception thrown during the action's executionaction - the action to executeargs - the arguments sent to the action during executiontrue if the exception was handled successfully,
 false otherwise.