Interface DbRowOp
- All Known Subinterfaces:
DbRowOpWithQualifier
,DbRowOpWithValues
- All Known Implementing Classes:
BaseDbRowOp
,DeleteDbRowOp
,DeleteInsertDbRowOp
,InsertDbRowOp
,UpdateDbRowOp
public interface DbRowOp
Object that represents some change on DB level.
Common cases are insert/update/delete of single DB row.
- Since:
- 4.2
-
Method Summary
Modifier and TypeMethodDescription<T> T
accept
(DbRowOpVisitor<T> visitor) boolean
isSameBatch
(DbRowOp rowOp)
-
Method Details
-
accept
-
getEntity
DbEntity getEntity() -
getChangeId
ObjectId getChangeId() -
getObject
Persistent getObject() -
isSameBatch
- Parameters:
rowOp
- to check- Returns:
- is this and rowOp operations belong to same sql batch
-