Interface LogMinerDmlEntry
-
- All Known Implementing Classes:
LogMinerDmlEntryImpl
public interface LogMinerDmlEntry
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description EventTypegetEventType()Object[]getNewValues()StringgetObjectName()StringgetObjectOwner()Object[]getOldValues()voidsetObjectName(String name)Sets table namevoidsetObjectOwner(String name)Sets schema owner
-
-
-
Method Detail
-
getOldValues
Object[] getOldValues()
- Returns:
- object array that contains the before state, values from WHERE clause.
-
getNewValues
Object[] getNewValues()
- Returns:
- object array that contains the after state, values from an insert's values list or the values in the SET clause of an update statement.
-
getEventType
EventType getEventType()
- Returns:
- LogMiner event type
-
getObjectOwner
String getObjectOwner()
- Returns:
- schema name
-
getObjectName
String getObjectName()
- Returns:
- table name
-
setObjectName
void setObjectName(String name)
Sets table name- Parameters:
name- table name
-
setObjectOwner
void setObjectOwner(String name)
Sets schema owner- Parameters:
name- schema owner
-
-