Interface DeletionService<T>

Type Parameters:
T - the type of entity (e.g., User)
All Known Subinterfaces:
CrudService<T,K>

public interface DeletionService<T>
Specifies the contract of a generic deletion service.
Author:
mlopez
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    delete(T entity)
    Deletes a given entity from the system.
  • Method Details

    • delete

      void delete(T entity)
      Deletes a given entity from the system.
      Parameters:
      entity - the entity to be deleted