Package com.tibco.ep.tcs.runtime.config
Interface ICallFlowBlockMetaData
-
- All Superinterfaces:
IBlockMetaData
,IBlockMetaDataWithSchema
public interface ICallFlowBlockMetaData extends IBlockMetaDataWithSchema
An interface that describes the metadata for a TCS call-flow block.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getFullyQualifiedFlowResourceName()
Return the fully-qualified resource name of the underlying TCS flow configuration that the block will call.Map<String,IModuleBlockPort>
getInputPorts()
Return this block's associative array of input ports, indexed by port name.Map<String,IModuleBlockPort>
getOutputPorts()
Return this block's associative array of output ports, indexed by port name.ITransformation[]
getSubstitutionVariableTransformations()
Return an array of transformations to produce substitution variable values, null if none.-
Methods inherited from interface com.tibco.ep.tcs.runtime.config.IBlockMetaDataWithSchema
getConfigurationSchema
-
-
-
-
Method Detail
-
getFullyQualifiedFlowResourceName
String getFullyQualifiedFlowResourceName()
Return the fully-qualified resource name of the underlying TCS flow configuration that the block will call.
- Returns:
- flow resource name
-
getInputPorts
Map<String,IModuleBlockPort> getInputPorts()
Return this block's associative array of input ports, indexed by port name.
- Returns:
- input ports
-
getOutputPorts
Map<String,IModuleBlockPort> getOutputPorts()
Return this block's associative array of output ports, indexed by port name.
- Returns:
- output ports
-
getSubstitutionVariableTransformations
ITransformation[] getSubstitutionVariableTransformations()
Return an array of transformations to produce substitution variable values, null if none.
- Returns:
- substitution variable transformations, null if none
-
-