Interface BasicRepository<E,ID>
-
- Type Parameters:
E- Concrete type of the entity to be managed by the repository.ID- Concrete type of the entity's id.
- All Superinterfaces:
ReaderRepository<E,ID>,WriterRepository<E,ID>
public interface BasicRepository<E,ID> extends ReaderRepository<E,ID>, WriterRepository<E,ID>
Interface for a basic repository of a specific type.
-
-
Method Summary
-
Methods inherited from interface com.bellotapps.webapps_commons.persistence.repository_utils.repositories.ReaderRepository
count, existsById, findAll, findById
-
Methods inherited from interface com.bellotapps.webapps_commons.persistence.repository_utils.repositories.WriterRepository
delete, deleteAll, deleteById, save
-
-