Interface TransformationDefinition
-
public interface TransformationDefinitionDeprecated.Since 2.3.0, replaced byTransformationDefinition.Defines attributes forTransformationimplementations.- Since:
- 2.1.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description java.lang.StringgetCode()Deprecated.Returns the code of thisTransformation.com.onwbp.base.text.UserMessagegetDescription()Deprecated.Returns the description of thisTransformation.java.util.List<InputDefinition>getInputDefinitions()Deprecated.Returns a list of input data of thisTransformation.com.onwbp.base.text.UserMessagegetLabel()Deprecated.Returns the label of thisTransformation.OutputDefinitiongetOutputDefinition()Deprecated.Returns the output data of thisTransformation.java.util.List<ParameterDefinition>getParameterDefinitions()Deprecated.Returns a list parameter of thisTransformation.TransformationgetTransformation(Operation operation)Deprecated.Returns an instance of thisTransformation.booleanisAggregation()Deprecated.Returnstrueif the transformation function is used for aggregating fields.booleanisBidirectional()Deprecated.Returnstrueif transfer data can be executed in both directions.
-
-
-
Method Detail
-
getCode
java.lang.String getCode()
Deprecated.Returns the code of thisTransformation.
-
getLabel
com.onwbp.base.text.UserMessage getLabel()
Deprecated.Returns the label of thisTransformation.
-
getDescription
com.onwbp.base.text.UserMessage getDescription()
Deprecated.Returns the description of thisTransformation.
-
getInputDefinitions
java.util.List<InputDefinition> getInputDefinitions()
Deprecated.Returns a list of input data of thisTransformation.
-
getOutputDefinition
OutputDefinition getOutputDefinition()
Deprecated.Returns the output data of thisTransformation.
-
getParameterDefinitions
java.util.List<ParameterDefinition> getParameterDefinitions()
Deprecated.Returns a list parameter of thisTransformation.
-
getTransformation
Transformation getTransformation(Operation operation)
Deprecated.Returns an instance of thisTransformation.
-
isBidirectional
boolean isBidirectional()
Deprecated.Returnstrueif transfer data can be executed in both directions.
-
isAggregation
boolean isAggregation()
Deprecated.Returnstrueif the transformation function is used for aggregating fields.
-
-