T - @Deprecated public interface BasicRepository<T>
Basic implementation for a simple Hibernate based repository. Deprecated, favour the use of Spring Data JPA repositories instead.
| Modifier and Type | Method and Description |
|---|---|
void |
create(T object)
Deprecated.
|
void |
delete(T object)
Deprecated.
|
List<T> |
findAll()
Deprecated.
|
List<T> |
findAll(Collection<Long> ids)
Deprecated.
|
T |
getById(long id)
Deprecated.
|
Class<T> |
getEntityClass()
Deprecated.
|
void |
update(T object)
Deprecated.
|
Copyright © 2020. All rights reserved.