com.dtolabs.rundeck.core.execution.workflow
Interface WorkflowExecutionResult

All Superinterfaces:
ExceptionStatusResult, StatusResult

public interface WorkflowExecutionResult
extends ExceptionStatusResult

WorkflowExecutionResult contains a list of workflow item results, indexed by workflow step number, and node names to failure messages.


Method Summary
 java.util.Map<java.lang.String,java.util.Collection<StepExecutionResult>> getNodeFailures()
          Return map of workflow item failures, keyed by node name
 java.util.List<StepExecutionResult> getResultSet()
          Return list of step results
 java.util.Map<java.lang.Integer,StepExecutionResult> getStepFailures()
          Return map of workflow item failures, keyed by node name
 
Methods inherited from interface com.dtolabs.rundeck.core.execution.ExceptionStatusResult
getException
 
Methods inherited from interface com.dtolabs.rundeck.core.execution.StatusResult
isSuccess
 

Method Detail

getResultSet

java.util.List<StepExecutionResult> getResultSet()
Return list of step results


getNodeFailures

java.util.Map<java.lang.String,java.util.Collection<StepExecutionResult>> getNodeFailures()
Return map of workflow item failures, keyed by node name


getStepFailures

java.util.Map<java.lang.Integer,StepExecutionResult> getStepFailures()
Return map of workflow item failures, keyed by node name