| Package | Description |
|---|---|
| com.ocs.dynamo.dao | |
| com.ocs.dynamo.service |
| Modifier and Type | Method and Description |
|---|---|
long |
BaseDao.count(Filter filter,
boolean distinct)
Returns the number of entities that match the provided filter
|
List<T> |
BaseDao.fetch(Filter filter,
FetchJoinInformation... joins)
Fetches entities that match the provided filter
|
List<T> |
BaseDao.fetch(Filter filter,
Pageable pageable,
FetchJoinInformation... joins)
Fetches entities that match the provided filter
|
List<T> |
BaseDao.fetch(Filter filter,
SortOrders orders,
FetchJoinInformation... joins)
Fetches entities that match the provided filter
|
List<T> |
BaseDao.find(Filter filter)
Returns all entities that match the provided filter
|
List<T> |
BaseDao.find(Filter filter,
SortOrder... orders)
Returns all entities that match the provided filter
|
<S> List<S> |
BaseDao.findDistinct(Filter filter,
String distinctField,
Class<S> elementType,
SortOrder... orders)
Returns all entities that match the provided filter and apply a distinct on the given column
|
List<ID> |
BaseDao.findIds(Filter filter,
SortOrder... orders)
Returns the IDS of the entities that match the provided filter
|
| Modifier and Type | Method and Description |
|---|---|
long |
BaseService.count(Filter filter,
boolean distinct)
Returns the number of entities that match the provided filter
|
List<T> |
BaseService.fetch(Filter filter,
FetchJoinInformation... joins)
Fetches entities that match the provided filter
|
List<T> |
BaseService.fetch(Filter filter,
int pageNumber,
int pageSize,
FetchJoinInformation... joins)
Fetches a page of entities that match the provided filter
|
List<T> |
BaseService.fetch(Filter filter,
int pageNumber,
int pageSize,
SortOrders sortOrders,
FetchJoinInformation... joins)
Fetches a page of entities that match the provided filter
|
List<T> |
BaseService.fetch(Filter filter,
SortOrders orders,
FetchJoinInformation... joins)
Fetches a list of entities that match the provided filter
|
List<T> |
BaseService.find(Filter filter)
Returns all entities that match the provided filter
|
List<T> |
BaseService.find(Filter filter,
SortOrder... orders)
Returns all entities that match the provided filter, sorted according to the
provided sort orders
|
<S> List<S> |
BaseService.findDistinct(Filter filter,
String distinctField,
Class<S> resultType,
SortOrder... orders)
Returns all distinct values that appear in a certain field for all entities
that match the provided filter
|
List<ID> |
BaseService.findIds(Filter filter,
SortOrder... orders)
Returns the IDs of the entities that match the provided filter
|
Copyright © 2019 Open Circle Solutions. All rights reserved.