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 SummaryModifier and TypeMethodDescription<T> Taccept(DbRowOpVisitor<T> visitor) booleanisSameBatch(DbRowOp rowOp) 
- 
Method Details- 
accept
- 
getEntityDbEntity getEntity()
- 
getChangeIdObjectId getChangeId()
- 
getObjectPersistent getObject()
- 
isSameBatch- Parameters:
- rowOp- to check
- Returns:
- is this and rowOp operations belong to same sql batch
 
 
-