Package step.core.plans.runner
Class DefaultPlanRunner
- java.lang.Object
-
- step.core.plans.runner.DefaultPlanRunner
-
- All Implemented Interfaces:
PlanRunner
- Direct Known Subclasses:
LocalPlanRunner
public class DefaultPlanRunner extends Object implements PlanRunner
Deprecated.UseExecutionEngine
insteadA simple runner that runs plans locally and doesn't support functions- Author:
- Jérôme Comte
-
-
Field Summary
Fields Modifier and Type Field Description protected Map<String,String>
properties
Deprecated.
-
Constructor Summary
Constructors Constructor Description DefaultPlanRunner()
Deprecated.DefaultPlanRunner(Map<String,String> properties)
Deprecated.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description PlanRunnerResult
run(Plan plan)
Deprecated.Runs a plan instancePlanRunnerResult
run(Plan plan, Map<String,String> executionParameters)
Deprecated.Runs a plan instance using the provided execution parameters
-
-
-
Method Detail
-
run
public PlanRunnerResult run(Plan plan)
Deprecated.Description copied from interface:PlanRunner
Runs a plan instance- Specified by:
run
in interfacePlanRunner
- Parameters:
plan
- the plan to be run- Returns:
- an handle to the execution result
-
run
public PlanRunnerResult run(Plan plan, Map<String,String> executionParameters)
Deprecated.Description copied from interface:PlanRunner
Runs a plan instance using the provided execution parameters- Specified by:
run
in interfacePlanRunner
- Parameters:
plan
- the plan to be runexecutionParameters
- the execution parameters to be used for the execution. These parameters are equivalent to the parameters selected on the execution screen of the STEP UI- Returns:
- an handle to the execution result
-
-