All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.camunda.bpm.scenario.delegate.TaskDelegate Maven / Gradle / Ivy

Go to download

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!

There is a newer version: 2.0.0.alpha.2
Show newest version
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