io.ebean.event.BulkTableEvent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ebean Show documentation
Show all versions of ebean Show documentation
composite of common runtime dependencies for all platforms
package io.ebean.event;
/**
* The bulk table event.
*/
public interface BulkTableEvent {
/**
* Return the name of the table that was involved.
*/
String getTableName();
/**
* Return true if rows were inserted.
*/
boolean isInsert();
/**
* Return true if rows were updated.
*/
boolean isUpdate();
/**
* Return true if rows were deleted.
*/
boolean isDelete();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy