public interface ScenarioExecutionDAO
Modifier and Type | Method and Description |
---|---|
Long |
delete(String scenarioExecutionId)
Delete a scenario execution
|
Optional<ScenarioExecution> |
find(String scenarioExecutionId)
Finds execution by given execution ID.
|
List<ScenarioExecution> |
getAllFor(String workflowExecutionId)
Lists all scenario executions for a given workflow execution ID.
|
Long |
save(ScenarioExecution scenarioExecution)
Persists a new scenario execution
|
Optional<ScenarioExecution> find(String scenarioExecutionId)
scenarioExecutionId
- execution ID of the queried executionLong save(ScenarioExecution scenarioExecution)
scenarioExecution
- scenario execution that should be persistedList<ScenarioExecution> getAllFor(String workflowExecutionId)
workflowExecutionId
- ID of the workflow executionCopyright © 2020. All rights reserved.