All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.avaje.ebean.event.BulkTableEvent Maven / Gradle / Ivy

There is a newer version: 8.1.1
Show newest version
package com.avaje.ebean.event;

/**
 * The bulk table event.
 * 
 * @author Robin Bygrave
 */
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 - 2024 Weber Informatics LLC | Privacy Policy