Interface TransformationConfigurationContext
-
public interface TransformationConfigurationContextAllows to access the configuration of a transformation.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description intgetOutputSize()Returns the expected number of output values.java.lang.StringgetParameterValue(java.lang.String paramName)Returns the value configured for aParameterDefinitiondefined in theTransformationDefinition.com.orchestranetworks.service.SessiongetSession()Returns the current session.booleanhasUnboundedInputSize()Returnstrueif input size is unbounded.booleanhasUnboundedOutputSize()Returnstrueif output size is unbounded.
-
-
-
Method Detail
-
getSession
com.orchestranetworks.service.Session getSession()
Returns the current session.
-
getParameterValue
java.lang.String getParameterValue(java.lang.String paramName)
Returns the value configured for aParameterDefinitiondefined in theTransformationDefinition.Returns the default value of the parameter if not configured.
- See Also:
ParameterDefinition.getDefaultValue()
-
hasUnboundedInputSize
boolean hasUnboundedInputSize()
Returnstrueif input size is unbounded.Returns
falseif input size is fixed.
-
hasUnboundedOutputSize
boolean hasUnboundedOutputSize()
Returnstrueif output size is unbounded.Returns
falseif output size is fixed.
-
getOutputSize
int getOutputSize()
Returns the expected number of output values.Returns
1by default.Returns
1ifhasUnboundedOutputSize()returnstrue.
-
-