Module io.ebean.api

Interface BeanDeleteIdRequest


public interface BeanDeleteIdRequest
A request to delete a bean by Id value.
  • Method Details

    • getEbeanServer

      @Deprecated EbeanServer getEbeanServer()
      Deprecated.
      Deprecated migrate to database().
    • getDatabase

      @Deprecated default Database getDatabase()
      Deprecated.
      Deprecated migrate to database().
    • database

      default Database database()
      Return the DB processing the request.
    • transaction

      Transaction transaction()
      Return the Transaction associated with this request.
    • getTransaction

      @Deprecated default Transaction getTransaction()
      Deprecated.
      Deprecated migrate to transaction().
    • beanType

      Class<?> beanType()
      Returns the bean type of the bean being deleted.
    • getBeanType

      @Deprecated default Class<?> getBeanType()
      Deprecated.
      Deprecated migrate to beanType().
    • id

      Object id()
      Returns the Id value of the bean being deleted.
    • getId

      @Deprecated default Object getId()
      Deprecated.
      Deprecated migrate to id().