Package io.ebean.event
Interface BulkTableEvent
-
public interface BulkTableEvent
The bulk table event.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getTableName()
Return the name of the table that was involved.boolean
isDelete()
Return true if rows were deleted.boolean
isInsert()
Return true if rows were inserted.boolean
isUpdate()
Return true if rows were updated.
-
-
-
Method Detail
-
getTableName
String getTableName()
Return the name of the table that was involved.
-
isInsert
boolean isInsert()
Return true if rows were inserted.
-
isUpdate
boolean isUpdate()
Return true if rows were updated.
-
isDelete
boolean isDelete()
Return true if rows were deleted.
-
-