Interface IPipelineConnections
-
- All Superinterfaces:
IPipelineSpecificationBasic
- All Known Subinterfaces:
IPipelineSpecification
,IPipelineSpecificationWithVersions
- All Known Implementing Classes:
PipelineConnections
,PipelineSpecification
,PipelineSpecificationWithVersions
public interface IPipelineConnections extends IPipelineSpecificationBasic
This interface caches IOutputConnection and ITransformationConnection objects required by an IPipelineSpecification.
-
-
Field Summary
-
Fields inherited from interface org.apache.manifoldcf.agents.interfaces.IPipelineSpecificationBasic
_rcsid
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.Integer
getOutputConnectionIndex(int stage)
Get the index of the output connection corresponding to a specific pipeline stage.java.lang.String[]
getOutputConnectionNames()
Get the output connection names mentioned by the IPipelineSpecification object.IOutputConnection[]
getOutputConnections()
Get the output connection instances mentioned by the IPipelineSpecification object.java.lang.Integer
getTransformationConnectionIndex(int stage)
Get the index of the transformation connection corresponding to a specific pipeline stage.java.lang.String[]
getTransformationConnectionNames()
Get the transformation connection names mentioned by the IPipelineSpecification object.ITransformationConnection[]
getTransformationConnections()
Get the transformation connection instances mentioned by the IPipelineSpecification object.-
Methods inherited from interface org.apache.manifoldcf.agents.interfaces.IPipelineSpecificationBasic
checkStageOutputConnection, getOutputCount, getOutputStage, getStageChildren, getStageConnectionName, getStageCount, getStageParent
-
-
-
-
Method Detail
-
getTransformationConnectionNames
java.lang.String[] getTransformationConnectionNames()
Get the transformation connection names mentioned by the IPipelineSpecification object.
-
getTransformationConnections
ITransformationConnection[] getTransformationConnections()
Get the transformation connection instances mentioned by the IPipelineSpecification object.
-
getOutputConnectionNames
java.lang.String[] getOutputConnectionNames()
Get the output connection names mentioned by the IPipelineSpecification object.
-
getOutputConnections
IOutputConnection[] getOutputConnections()
Get the output connection instances mentioned by the IPipelineSpecification object.
-
getTransformationConnectionIndex
java.lang.Integer getTransformationConnectionIndex(int stage)
Get the index of the transformation connection corresponding to a specific pipeline stage.
-
getOutputConnectionIndex
java.lang.Integer getOutputConnectionIndex(int stage)
Get the index of the output connection corresponding to a specific pipeline stage.
-
-