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

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


        System.out.println("Example step executing on nodes: " + context.getNodes().getNodeNames());
        System.out.println("Example step configuration: " + configuration);
        System.out.println("Example step num: " + context.getStepNumber());
        System.out.println("Example step context: " + context.getStepContext());
        if ("true".equals(configuration.get("lampkin"))) {
            throw new StepException("lampkin was true", Reason.ExampleReason);
        }
    }
View Full Code Here

TOP

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

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.