org.javasteps
Interface StepAction


public interface StepAction

The StepAction interface is the interface that must be implemented by all step action classes

Version:
1.1
Author:
Ran Kornfeld

Field Summary
static String EXCEPTION_PARAM
          Param key used to store exceptions thrown during step action executions
 
Method Summary
 void execute(ProcessContext processCtx, String stepName)
          Executes the step action
 

Field Detail

EXCEPTION_PARAM

static final String EXCEPTION_PARAM
Param key used to store exceptions thrown during step action executions

See Also:
Constant Field Values
Method Detail

execute

void execute(ProcessContext processCtx,
             String stepName)
             throws StepActionException
Executes the step action

Parameters:
processCtx - The process context
stepName - The name of the current step if available
Throws:
StepActionException - application exception that can be thrown from the action