com.continuent.tungsten.replicator.prefetch
Class RbrRowChange

java.lang.Object
  extended by com.continuent.tungsten.replicator.prefetch.RbrRowChange

public class RbrRowChange
extends java.lang.Object

Encapsulates changes on a single row in a single table, providing access to the before and after images of the row data.


Method Summary
 RbrRowImage getAfterImage()
          Returns the before image as a separate object or null if it does not exist;
 RbrRowImage getBeforeImage()
          Returns the before image as a separate object or null if it does not exist.
 java.lang.String getSchemaName()
           
 java.lang.String getTableName()
           
 boolean isDelete()
           
 boolean isInsert()
           
 boolean isUpdate()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Method Detail

isInsert

public boolean isInsert()

isUpdate

public boolean isUpdate()

isDelete

public boolean isDelete()

getSchemaName

public java.lang.String getSchemaName()

getTableName

public java.lang.String getTableName()

getBeforeImage

public RbrRowImage getBeforeImage()
Returns the before image as a separate object or null if it does not exist.


getAfterImage

public RbrRowImage getAfterImage()
Returns the before image as a separate object or null if it does not exist;