001package io.ebean.event;
002
003/**
004 * The bulk table event.
005 */
006public interface BulkTableEvent {
007
008  /**
009   * Return the name of the table that was involved.
010   */
011  String getTableName();
012
013  /**
014   * Return true if rows were inserted.
015   */
016  boolean isInsert();
017
018  /**
019   * Return true if rows were updated.
020   */
021  boolean isUpdate();
022
023  /**
024   * Return true if rows were deleted.
025   */
026  boolean isDelete();
027
028}