Package | Description |
---|---|
com.hof.mi.etl.runner | |
com.hof.mi.etl.runner.status | |
com.hof.mi.etl.step |
Modifier and Type | Method and Description |
---|---|
java.util.Map<java.lang.String,ETLStep> |
ETLRunnerImpl.getSteps()
Get all built ETLStep objects for this process
|
java.util.Map<java.lang.String,ETLStep> |
ETLRunner.getSteps()
Get the steps which make up the process
|
Constructor and Description |
---|
ExecutionHead(ETLStep headStep) |
Modifier and Type | Method and Description |
---|---|
void |
ETLProcessStatusImpl.registerStep(ETLStep step) |
void |
ETLProcessStatus.registerStep(ETLStep step)
Register an
ETLStep object for recording status. |
Modifier and Type | Interface and Description |
---|---|
interface |
ETLInlineStep
All ETL Inline Steps must implement this interface.
|
Modifier and Type | Class and Description |
---|---|
class |
AbstractETLCachedStep
This is a partial implementation
AbstractETLStep . |
class |
AbstractETLInlineRowStep
This is a partial implementation
AbstractETLRowStep . |
class |
AbstractETLRowStep
This is a partial implementation
AbstractETLStep . |
class |
AbstractETLStep
This is a partial implementaton of the
ETLStep interface. |
class |
AbstractGroupedDataInlineStep
Base implementation which handles common functionality for all grouped data inline steps.
|
Modifier and Type | Method and Description |
---|---|
ETLStep |
AbstractETLStep.getErrorStep() |
ETLStep |
ETLStep.getErrorStep()
The error step.
|
ETLStep |
AbstractETLStep.getInputStep(java.lang.String inFlowUuid) |
ETLStep |
ETLStep.getInputStep(java.lang.String inFlowUuid)
Get the input step connected to this step by the specified input flowUUID.
|
ETLStep |
AbstractETLStep.getOutputStep(java.lang.String outFlowUuid) |
ETLStep |
ETLStep.getOutputStep(java.lang.String outFlowUuid)
Get the output step connected to this step by the specified output flowUUID.
|
Modifier and Type | Method and Description |
---|---|
java.util.Collection<ETLStep> |
AbstractETLStep.getInputSteps()
Get all Input Steps as a Collection
|
java.util.Collection<ETLStep> |
AbstractETLStep.getOutputSteps()
Get all Output Steps as a Collection.
|
Modifier and Type | Method and Description |
---|---|
void |
AbstractETLStep.addInputStep(java.lang.String inFlowUuid,
ETLStep inputStep) |
void |
ETLStep.addInputStep(java.lang.String inFlowUuid,
ETLStep inputStep)
Register an input step.
|
void |
AbstractETLStep.addOutputStep(java.lang.String outFlowUuid,
ETLStep outputStep) |
void |
ETLStep.addOutputStep(java.lang.String outFlowUuid,
ETLStep outputStep)
Register an output step.
|
void |
AbstractETLStep.setErrorStep(java.lang.String errorFlowUuid,
ETLStep errorStep) |
void |
ETLStep.setErrorStep(java.lang.String errorFlowUuid,
ETLStep errorStep)
Register the error step.
|