- fetch(Filter, FetchJoinInformation...) - Method in interface com.ocs.dynamo.dao.BaseDao
-
Fetches entities that match the provided filter
- fetch(Filter, Pageable, FetchJoinInformation...) - Method in interface com.ocs.dynamo.dao.BaseDao
-
Fetches entities that match the provided filter
- fetch(Filter, SortOrders, FetchJoinInformation...) - Method in interface com.ocs.dynamo.dao.BaseDao
-
Fetches entities that match the provided filter
- fetch(Filter, FetchJoinInformation...) - Method in interface com.ocs.dynamo.service.BaseService
-
Fetches entities that match the provided filter
- fetch(Filter, int, int, FetchJoinInformation...) - Method in interface com.ocs.dynamo.service.BaseService
-
Fetches a page of entities that match the provided filter
- fetch(Filter, int, int, SortOrders, FetchJoinInformation...) - Method in interface com.ocs.dynamo.service.BaseService
-
Fetches a page of entities that match the provided filter
- fetch(Filter, SortOrders, FetchJoinInformation...) - Method in interface com.ocs.dynamo.service.BaseService
-
Fetches entities that match the provided filter
- fetchById(ID, FetchJoinInformation...) - Method in interface com.ocs.dynamo.dao.BaseDao
-
Fetches an entity (and its relations) based on its ID
- fetchById(ID, FetchJoinInformation...) - Method in interface com.ocs.dynamo.service.BaseService
-
Fetches an entity (and its relations) based on its ID
- fetchByIds(List<ID>, SortOrders, FetchJoinInformation...) - Method in interface com.ocs.dynamo.dao.BaseDao
-
Fetches the entities identified by the provided IDs
- fetchByIds(List<ID>, FetchJoinInformation...) - Method in interface com.ocs.dynamo.service.BaseService
-
Fetches the entities identified by the provided IDs
- fetchByIds(List<ID>, SortOrders, FetchJoinInformation...) - Method in interface com.ocs.dynamo.service.BaseService
-
Fetches the entities identified by the provided IDs
- fetchByUniqueProperty(String, Object, boolean, FetchJoinInformation...) - Method in interface com.ocs.dynamo.dao.BaseDao
-
Fetches an entity based on a unique property
- fetchByUniqueProperty(String, Object, boolean, FetchJoinInformation...) - Method in interface com.ocs.dynamo.service.BaseService
-
Fetches an entity based on a unique property
- FetchJoinInformation - Class in com.ocs.dynamo.dao.query
-
A DTO representing the properties of a fetch join
- FetchJoinInformation(String, JoinType) - Constructor for class com.ocs.dynamo.dao.query.FetchJoinInformation
-
Constructor
- FetchJoinInformation(String) - Constructor for class com.ocs.dynamo.dao.query.FetchJoinInformation
-
Constructor - defaults to left join
- find(Filter) - Method in interface com.ocs.dynamo.dao.BaseDao
-
Returns all entities that match the provided filter
- find(Filter, SortOrder...) - Method in interface com.ocs.dynamo.dao.BaseDao
-
Returns all entities that match the provided filter
- find(Predicate) - Method in interface com.ocs.dynamo.dao.BaseDao
-
Returns all entities that match a certain predicate
- find(Predicate, int, int, SortOrder...) - Method in interface com.ocs.dynamo.dao.BaseDao
-
Finds the entities that match a certain predicate
- find(Filter) - Method in interface com.ocs.dynamo.service.BaseService
-
Returns all entities that match the provided filter
- find(Filter, SortOrder...) - Method in interface com.ocs.dynamo.service.BaseService
-
Returns all entities that match the provided filter, sorted according to the provided sort
orders
- findAll() - Method in interface com.ocs.dynamo.dao.BaseDao
-
Returns a list of all entities.
- findAll(SortOrder...) - Method in interface com.ocs.dynamo.dao.BaseDao
-
Returns a list of all entities.
- findAll() - Method in interface com.ocs.dynamo.service.BaseService
-
Returns a list of all entities.
- findAll(SortOrder...) - Method in interface com.ocs.dynamo.service.BaseService
-
Returns a list of all entities, sorted according to the provided sort orders
- findById(ID) - Method in interface com.ocs.dynamo.dao.BaseDao
-
Finds an object based on its ID
- findById(ID) - Method in interface com.ocs.dynamo.service.BaseService
-
Finds an object based on its ID
- findByParent(T) - Method in interface com.ocs.dynamo.dao.TreeDao
-
Find all children for a given parent.
- findByParentIsNull() - Method in interface com.ocs.dynamo.dao.TreeDao
-
Find all root objects.
- findByUniqueProperty(String, Object, boolean) - Method in interface com.ocs.dynamo.dao.BaseDao
-
Finds an object based on a unique property value
- findByUniqueProperty(String, Object, boolean) - Method in interface com.ocs.dynamo.service.BaseService
-
Finds an object based on a unique property value
- findDistinct(Filter, String, Class<S>, SortOrder...) - Method in interface com.ocs.dynamo.dao.BaseDao
-
Returns all entities that match the provided filter and apply a distinct on the given column
- findDistinct(Filter, String, Class<S>, SortOrder...) - Method in interface com.ocs.dynamo.service.BaseService
-
Returns all distinct values that appear in a certain field for all entities that match the
provided filter
- findDistinctInCollectionTable(String, String, Class<S>) - Method in interface com.ocs.dynamo.dao.BaseDao
-
Returns all distinct values in a collection table
- findDistinctInCollectionTable(String, String, Class<S>) - Method in interface com.ocs.dynamo.service.BaseService
-
Finds distinct elements in a collection table
- findIds(Filter, SortOrder...) - Method in interface com.ocs.dynamo.dao.BaseDao
-
Returns the IDS of the entities that match the provided filter
- findIds(Filter, SortOrder...) - Method in interface com.ocs.dynamo.service.BaseService
-
Returns the IDS of the entities that match the provided filter
- flushAndClear() - Method in interface com.ocs.dynamo.dao.BaseDao
-
Flushes and clears the entity manager (useful after an explicit update or delete)