![JAR search and dependency download from the Maven repository](/logo.png)
org.camunda.bpm.scenario.delegate.TaskDelegate Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of camunda-bpm-assert-scenario Show documentation
Show all versions of camunda-bpm-assert-scenario Show documentation
Camunda BPM Assert Scenario allows you to specify the actions
needed at process wait states before you start the process instances
executing your test scenario. As a consequence, writing such tests is
easier and faster than ever before. And refactoring and changing large
process models and their test suites can almost be done in the blink
of an eye: ;-) Done! Check it out and judge yourself!
package org.camunda.bpm.scenario.delegate;
import org.camunda.bpm.engine.task.Task;
import org.camunda.bpm.scenario.defer.Deferrable;
import java.util.Map;
/**
* @author Martin Schimak
*/
public interface TaskDelegate extends Task, ProcessInstanceAwareDelegate, Deferrable {
/**
* Complete this user task.
*/
void complete();
/**
* Complete this user task and deliver a map of additional information
* created by the human user (e.g. by filling out a form) and to be
* stored as process instance variables.
*/
void complete(Map variables);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy