Interface WorkflowExecutionService

    • Method Detail

      • list

        List<? extends WorkflowExecution> list()
        List all workflow executions with details.
        Returns:
        List of workflow executions.
      • create

        WorkflowExecution create​(WorkflowExecution wfExec)
        Create a new workflow execution.
        Parameters:
        wfExec - Workflow execution to create.
        Returns:
        Created workflow execution.
      • get

        WorkflowExecution get​(String id)
        Get workflow execution by its ID.
        Parameters:
        id - Workflow execution ID.
        Returns:
        Workflow execution.
      • delete

        ActionResponse delete​(String id)
        Delete workflow execution by its ID.
        Parameters:
        id - Workflow execution ID.
        Returns:
        Action response from the server.