Class ConvertBeanToMapOperation
- java.lang.Object
-
- de.gebit.integrity.runner.operations.ConvertBeanToMapOperation
-
-
Field Summary
Fields Modifier and Type Field Description protected ValueConverter
valueConverter
The value converter being used.
-
Constructor Summary
Constructors Constructor Description ConvertBeanToMapOperation()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Map<String,Object>
execute(Object aParameter, Object anUnusedSecondParameter)
Executes the operation logic.
-
-
-
Field Detail
-
valueConverter
@Inject protected ValueConverter valueConverter
The value converter being used.
-
-
Method Detail
-
execute
public Map<String,Object> execute(Object aParameter, Object anUnusedSecondParameter)
Description copied from interface:Operation
Executes the operation logic.- Specified by:
execute
in interfaceOperation<Object,Object,Map<String,Object>>
- Parameters:
aParameter
- the prefix parameter, or null if none was given or the value is not available at the time of the callanUnusedSecondParameter
- the postfix parameter, or null if none was given or the value is not available at the time of the call- Returns:
- the result value
-
-