Examples of StepExecutionResultImpl


Examples of com.dtolabs.rundeck.core.execution.workflow.steps.StepExecutionResultImpl

        assertStepStateEvent((Object[]) testListener1.events.get(1), ExecutionState.RUNNING, null, 1);
        assertStepStateEvent((Object[]) testListener1.events.get(2), ExecutionState.SUCCEEDED, null,1);
    }

    private StepExecutionResult successResult() {
        return new StepExecutionResultImpl();
    }
View Full Code Here

Examples of com.dtolabs.rundeck.core.execution.workflow.steps.StepExecutionResultImpl

                            nodeFailures = handlerCaptureFailedNodesListener.getFailedNodes();
                        }
                    }
                }
            }catch (RuntimeException t) {
                stepResult = new StepExecutionResultImpl(t, StepFailureReason.Unknown, t.getMessage());
                throw t;
            } finally {
                if (null != wlistener) {
                    wlistener.finishWorkflowItem(c, cmd, stepResult);
                }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.