@Deprecated public class TestExecutionPlan extends Object
Modifier and Type | Class and Description |
---|---|
static class |
TestExecutionPlan.Command
Deprecated.
Represents a generic command task.
|
static class |
TestExecutionPlan.Job
Deprecated.
Represents a Hadoop job task.
|
static interface |
TestExecutionPlan.Task
Deprecated.
Represents a task in execution.
|
static class |
TestExecutionPlan.TaskKind
Deprecated.
Represents a kind of
TestExecutionPlan.Task . |
Constructor and Description |
---|
TestExecutionPlan(String definitionId,
String executionId,
List<? extends TestExecutionPlan.Task> initializers,
List<? extends TestExecutionPlan.Task> importers,
List<? extends TestExecutionPlan.Task> jobs,
List<? extends TestExecutionPlan.Task> exporters,
List<? extends TestExecutionPlan.Task> finalizers)
Deprecated.
Creates a new instance.
|
Modifier and Type | Method and Description |
---|---|
String |
getDefinitionId()
Deprecated.
Returns the static definition ID of this plan.
|
String |
getExecutionId()
Deprecated.
Returns the runtime execution ID of this plan.
|
List<TestExecutionPlan.Task> |
getExporters()
Deprecated.
Returns tasks in export phase.
|
List<TestExecutionPlan.Task> |
getFinalizers()
Deprecated.
Returns tasks in finalize phase.
|
List<TestExecutionPlan.Task> |
getImporters()
Deprecated.
Returns tasks in import phase.
|
List<TestExecutionPlan.Task> |
getInitializers()
Deprecated.
Returns tasks in initialize phase.
|
List<TestExecutionPlan.Task> |
getJobs()
Deprecated.
Returns tasks in main phase.
|
public TestExecutionPlan(String definitionId, String executionId, List<? extends TestExecutionPlan.Task> initializers, List<? extends TestExecutionPlan.Task> importers, List<? extends TestExecutionPlan.Task> jobs, List<? extends TestExecutionPlan.Task> exporters, List<? extends TestExecutionPlan.Task> finalizers)
definitionId
- the static definition ID of this planexecutionId
- the runtime execution ID of this planinitializers
- tasks in initialize phaseimporters
- tasks in import phasejobs
- tasks in main phaseexporters
- tasks in export phasefinalizers
- tasks in finalize phaseIllegalArgumentException
- if some parameters are null
public String getDefinitionId()
public String getExecutionId()
public List<TestExecutionPlan.Task> getInitializers()
public List<TestExecutionPlan.Task> getImporters()
public List<TestExecutionPlan.Task> getJobs()
public List<TestExecutionPlan.Task> getExporters()
public List<TestExecutionPlan.Task> getFinalizers()
Copyright © 2011–2019 Asakusa Framework Team. All rights reserved.