Package org.camunda.bpm.scenario.act
Interface UserTaskAction
-
- All Superinterfaces:
Action<TaskDelegate>
public interface UserTaskAction extends Action<TaskDelegate>
- Author:
- Martin Schimak
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidexecute(TaskDelegate task)Implement this action with custom code to be executed when the process instance arrives at an user task.
-
-
-
Method Detail
-
execute
void execute(TaskDelegate task) throws Exception
Implement this action with custom code to be executed when the process instance arrives at an user task.- Specified by:
executein interfaceAction<TaskDelegate>- Parameters:
task- the user task waiting for completion by a human- Throws:
Exception- in case your custom code throws checked exceptions. Such exceptions will be wrapped into RuntimeExceptions and rethrown.
-
-