public interface GenericDao<T extends AbstractDomainObject>
| Modifier and Type | Method and Description |
|---|---|
void |
delete(T t)
Deletes a T entity
|
void |
find(QueryData<T> queryData)
Find persistence data using QueryData
|
void |
findWithoutCount(QueryData<T> queryData)
Find persistence data using QueryData without counting the total matches
|
void |
insert(List<T> list)
Inserts a list of T entity
|
void |
insert(T t)
Inserts a T entity
|
List<T> |
list(T mask,
T sortMask,
QuerySortOrder order) |
void |
save(T t)
Saves a T entity
|
T |
update(T t)
Updates a T entity
|
void save(T t)
T - tvoid delete(T t)
T - tvoid insert(T t)
T - tvoid findWithoutCount(QueryData<T> queryData)
queryData - List<T> list(T mask, T sortMask, QuerySortOrder order)
Copyright © 2015. All rights reserved.