Package io.jmix.core

Interface RemoveDelegate<E>

Type Parameters:
E - entity type
All Known Implementing Classes:
CustomerService

public interface RemoveDelegate<E>
Interface to be implemented by custom update services. The remove(E) method is called by generic framework mechanisms instead of DataManager when removing entities of type E.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    remove(E entity)
    Called by generic framework mechanisms instead of DataManager when removing entities of type E.
  • Method Details

    • remove

      void remove(E entity)
      Called by generic framework mechanisms instead of DataManager when removing entities of type E.
      Parameters:
      entity - entity to remove