Package com.dtolabs.rundeck.core.execution.workflow.steps

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


                            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

Related Classes of com.dtolabs.rundeck.core.execution.workflow.steps.StepExecutionResultImpl

Copyright © 2018 www.massapicom. 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.