Package org.camunda.bpm.scenario.act
Interface MockedCallActivityAction
-
- All Superinterfaces:
Action<ExternalTaskDelegate>,ServiceTaskAction
public interface MockedCallActivityAction extends ServiceTaskAction
- Author:
- Martin Schimak
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidexecute(ExternalTaskDelegate callActivity)Implement this action with custom code to be executed when the process instance arrives at a mocked call activity.
-
-
-
Method Detail
-
execute
void execute(ExternalTaskDelegate callActivity) throws Exception
Implement this action with custom code to be executed when the process instance arrives at a mocked call activity.- Specified by:
executein interfaceAction<ExternalTaskDelegate>- Specified by:
executein interfaceServiceTaskAction- Parameters:
callActivity- the external task the call activity internally is mocked with.- Throws:
Exception- in case your custom code throws checked exceptions. Such exceptions will be wrapped into RuntimeExceptions and rethrown.
-
-