com.ibm.pim.extensionpoints
Interface WorkflowStepFunction


public interface WorkflowStepFunction

Interface that represents the Workflow Step function

Since:
6.0.0
Equivalent in Script API:
the script extension point "Workflow Step Script"

Field Summary
static java.lang.String copyright
           
 
Method Summary
 void in(WorkflowStepFunctionArguments inArgs)
          Driven by WPC on entry to a step.
 void out(WorkflowStepFunctionArguments inArgs)
          Driven by WPC on exit from a step.
 void timeout(WorkflowStepFunctionArguments inArgs)
          Driven by WPC on exit from a step due to an expiring timeout.
 

Field Detail

copyright

static final java.lang.String copyright
See Also:
Constant Field Values
Method Detail

in

void in(WorkflowStepFunctionArguments inArgs)
Driven by WPC on entry to a step.

Parameters:
inArgs - the arguments for this invocation

out

void out(WorkflowStepFunctionArguments inArgs)
Driven by WPC on exit from a step.

Parameters:
inArgs - the arguments for this invocation

timeout

void timeout(WorkflowStepFunctionArguments inArgs)
Driven by WPC on exit from a step due to an expiring timeout.

Parameters:
inArgs - the arguments for this invocation