Package org.camunda.bpm.scenario.run
Interface ProcessRunner.ExecutableRunner.StartingByKey
-
- All Superinterfaces:
ProcessRunner.ExecutableRunner
- All Known Implementing Classes:
MockedProcessRunnerImpl,ProcessRunnerImpl
- Enclosing interface:
- ProcessRunner.ExecutableRunner
public static interface ProcessRunner.ExecutableRunner.StartingByKey extends ProcessRunner.ExecutableRunner
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.camunda.bpm.scenario.run.ProcessRunner.ExecutableRunner
ProcessRunner.ExecutableRunner.StartingByKey, ProcessRunner.ExecutableRunner.StartingByMessage, ProcessRunner.ExecutableRunner.StartingByStarter
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Scenarioexecute()Execute the fully defined scenario run.ProcessRunner.ExecutableRunner.StartingByKeyfromAfter(String activityId)Run the new process instance not from its beginning, but just from after the activity id provided as parameter.ProcessRunner.ExecutableRunner.StartingByKeyfromBefore(String activityId)Run the new process instance not from its beginning, but just from before the activity id provided as parameter.-
Methods inherited from interface org.camunda.bpm.scenario.run.ProcessRunner.ExecutableRunner
engine, run
-
-
-
-
Method Detail
-
fromBefore
ProcessRunner.ExecutableRunner.StartingByKey fromBefore(String activityId)
Run the new process instance not from its beginning, but just from before the activity id provided as parameter.- Parameters:
activityId- from before which the new process instance should be started
-
fromAfter
ProcessRunner.ExecutableRunner.StartingByKey fromAfter(String activityId)
Run the new process instance not from its beginning, but just from after the activity id provided as parameter.- Parameters:
activityId- from after which the new process instance should be started
-
execute
Scenario execute()
Execute the fully defined scenario run.- Specified by:
executein interfaceProcessRunner.ExecutableRunner- Returns:
- an executed scenario
-
-