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

io.ebean.event.BeanDeleteIdRequest Maven / Gradle / Ivy

There is a newer version: 15.8.0
Show newest version
package io.ebean.event;

import io.ebean.Database;
import io.ebean.Transaction;

/**
 * A request to delete a bean by Id value.
 */
public interface BeanDeleteIdRequest {

  /**
   * Return the DB processing the request.
   */
  Database database();

  /**
   * Return the Transaction associated with this request.
   */
  Transaction transaction();

  /**
   * Returns the bean type of the bean being deleted.
   */
  Class beanType();

  /**
   * Returns the Id value of the bean being deleted.
   */
  Object id();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy