Class SynchronizeAfterMerge

java.lang.Object
org.pentaho.di.trans.step.BaseStep
org.pentaho.di.trans.step.BaseDatabaseStep
org.pentaho.di.trans.steps.synchronizeaftermerge.SynchronizeAfterMerge
All Implemented Interfaces:
org.pentaho.di.core.ExtensionDataInterface, HasLogChannelInterface, org.pentaho.di.core.logging.LoggingObjectInterface, org.pentaho.di.core.logging.LoggingObjectLifecycleInterface, org.pentaho.di.core.variables.VariableSpace, StepInterface

public class SynchronizeAfterMerge extends BaseDatabaseStep implements StepInterface
Performs an insert/update/delete depending on the value of a field.
Since:
13-10-2008
Author:
Samatar
  • Constructor Details

  • Method Details

    • getLookupStatement

      public String getLookupStatement(org.pentaho.di.core.row.RowMetaInterface rowMeta) throws org.pentaho.di.core.exception.KettleDatabaseException
      Throws:
      org.pentaho.di.core.exception.KettleDatabaseException
    • getUpdateStatement

      public String getUpdateStatement(org.pentaho.di.core.row.RowMetaInterface rowMeta) throws org.pentaho.di.core.exception.KettleDatabaseException
      Throws:
      org.pentaho.di.core.exception.KettleDatabaseException
    • getDeleteStatement

      public String getDeleteStatement(org.pentaho.di.core.row.RowMetaInterface rowMeta) throws org.pentaho.di.core.exception.KettleDatabaseException
      Throws:
      org.pentaho.di.core.exception.KettleDatabaseException
    • processRow

      public boolean processRow(StepMetaInterface smi, StepDataInterface sdi) throws org.pentaho.di.core.exception.KettleException
      Description copied from interface: StepInterface
      Perform the equivalent of processing one row. Typically this means reading a row from input (getRow()) and passing a row to output (putRow)).
      Specified by:
      processRow in interface StepInterface
      Overrides:
      processRow in class BaseStep
      Parameters:
      smi - The steps metadata to work with
      sdi - The steps temporary working data to work with (database connections, result sets, caches, temporary variables, etc.)
      Returns:
      false if no more rows can be processed or an error occurred.
      Throws:
      org.pentaho.di.core.exception.KettleException
    • init

      public boolean init(StepMetaInterface smi, StepDataInterface sdi)
      Description copied from interface: StepInterface
      Initialize and do work where other steps need to wait for...
      Specified by:
      init in interface StepInterface
      Overrides:
      init in class BaseDatabaseStep
      Parameters:
      smi - The metadata to work with
      sdi - The data to initialize
    • getPKG

      protected Class<?> getPKG()
      Description copied from class: BaseDatabaseStep
      Returns the specific step class needed for logging
      Specified by:
      getPKG in class BaseDatabaseStep
      Returns:
      the specific step class needed for logging
    • afterFinishProcessing

      public boolean afterFinishProcessing(StepMetaInterface smi, StepDataInterface sdi)
      Description copied from interface: StepInterface
      This method is executed by Trans after finishing processing rows.
      Specified by:
      afterFinishProcessing in interface StepInterface
      Parameters:
      smi - The steps metadata to work with
      sdi - The steps temporary working data to work with (database connections, result sets, caches, temporary variables, etc.)