public interface WorkflowExecutionDAO
Modifier and Type | Method and Description |
---|---|
Long |
delete(WorkflowExecution workflowExecution)
Deletes a workflow execution.
|
Optional<WorkflowExecution> |
find(String workflowExecutionId)
Queries a workflow by a given ID.
|
List<WorkflowExecution> |
getAll()
Returns all persisted workflow executions
|
Long |
save(WorkflowExecution workflowExecution)
Insert a new workflow execution to the repository
|
Optional<WorkflowExecution> find(String workflowExecutionId)
workflowExecutionId
- id of the queried workflowLong save(WorkflowExecution workflowExecution)
workflowExecution
- workflow execution to be persistedList<WorkflowExecution> getAll()
Long delete(WorkflowExecution workflowExecution)
workflowExecution
- workflow execution that should be deletedCopyright © 2020. All rights reserved.