Class RowOutputDataMapper
- java.lang.Object
-
- org.pentaho.di.trans.step.RowAdapter
-
- org.pentaho.di.trans.steps.simplemapping.RowOutputDataMapper
-
- All Implemented Interfaces:
RowListener
public class RowOutputDataMapper extends RowAdapter
This class takes care of mapping output data from the mapping step back to the parent transformation, renaming columns mainly.- Author:
- matt
-
-
Constructor Summary
Constructors Constructor Description RowOutputDataMapper(MappingIODefinition inputDefinition, MappingIODefinition outputDefinition, PutRowInterface putRowInterface)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidrowWrittenEvent(org.pentaho.di.core.row.RowMetaInterface rowMeta, Object[] row)Empty method implementing the RowListener.rowWrittenEvent interface method-
Methods inherited from class org.pentaho.di.trans.step.RowAdapter
errorRowWrittenEvent, rowReadEvent
-
-
-
-
Constructor Detail
-
RowOutputDataMapper
public RowOutputDataMapper(MappingIODefinition inputDefinition, MappingIODefinition outputDefinition, PutRowInterface putRowInterface)
-
-
Method Detail
-
rowWrittenEvent
public void rowWrittenEvent(org.pentaho.di.core.row.RowMetaInterface rowMeta, Object[] row) throws org.pentaho.di.core.exception.KettleStepExceptionDescription copied from class:RowAdapterEmpty method implementing the RowListener.rowWrittenEvent interface method- Specified by:
rowWrittenEventin interfaceRowListener- Overrides:
rowWrittenEventin classRowAdapter- Parameters:
rowMeta- the metadata of the rowrow- the data of the row- Throws:
org.pentaho.di.core.exception.KettleStepException- an exception that can be thrown to hard stop the step- See Also:
RowListener.rowWrittenEvent(org.pentaho.di.core.row.RowMetaInterface, java.lang.Object[])
-
-