Interface PagedGenericDao<M>
-
- Type Parameters:
M- The type of item returned from the search
- All Known Subinterfaces:
OrgUnitDao<T>,PagedB2BBudgetDao<M>,PagedB2BCostCenterDao<M>,PagedB2BCustomerDao<M>,PagedB2BCustomerDao<M>,PagedB2BPermissionDao<M>,PagedB2BProductDao<M>,PagedB2BUserGroupDao<M>
- All Known Implementing Classes:
DefaultB2BOrgUnitDao,DefaultCustomerGroupDao,DefaultCustomerSupportEventDao,DefaultOrgUnitDao,DefaultPagedB2BBudgetDao,DefaultPagedB2BBudgetDao,DefaultPagedB2BCostCenterDao,DefaultPagedB2BCostCenterDao,DefaultPagedB2BCustomerDao,DefaultPagedB2BCustomerDao,DefaultPagedB2BDocumentDao,DefaultPagedB2BPermissionDao,DefaultPagedB2BPermissionDao,DefaultPagedB2BProductDao,DefaultPagedB2BUserGroupDao,DefaultPagedB2BUserGroupDao,DefaultPagedB2BWorkflowActionDao,DefaultPagedGenericDao,OrderByNullVersionIdPagedDao,SearchByStatusPagedGenericDao,WarehousesByBaseStorePagedDao,WarehousesByPointOfServicePagedDao
@Deprecated(since="6.6") public interface PagedGenericDao<M>Deprecated.Since 6.6. UsePaginatedGenericDaoinsteadPaged version of theGenericDao.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description SearchPageData<M>find(PageableData pageableData)Deprecated.Searches for all instances of model given as a generic type.SearchPageData<M>find(SortParameters sortParameters, PageableData pageableData)Deprecated.Searches for all instances of model given as a generic type using givenSortParametersto sort results.SearchPageData<M>find(java.util.Map<java.lang.String,?> params, PageableData pageableData)Deprecated.Searches for all instances of model given as a generic type matching given parameters.SearchPageData<M>find(java.util.Map<java.lang.String,?> params, SortParameters sortParameters, PageableData pageableData)Deprecated.Searches for all instances of model given as a generic type matching given parameters using givenSortParametersto sort results.
-
-
-
Method Detail
-
find
SearchPageData<M> find(PageableData pageableData)
Deprecated.Searches for all instances of model given as a generic type.- Parameters:
pageableData- the page of results to return- Returns:
- The matching page of search results
-
find
SearchPageData<M> find(java.util.Map<java.lang.String,?> params, PageableData pageableData)
Deprecated.Searches for all instances of model given as a generic type matching given parameters.- Parameters:
params- parameters to add to search query asMapwith parameter name as a key and parameter value as a value.pageableData- the page of results to return- Returns:
- The matching page of search results
-
find
SearchPageData<M> find(SortParameters sortParameters, PageableData pageableData)
Deprecated.Searches for all instances of model given as a generic type using givenSortParametersto sort results.- Parameters:
sortParameters-SortParametersobject used to sort results.pageableData- the page of results to return- Returns:
- The matching page of search results
-
find
SearchPageData<M> find(java.util.Map<java.lang.String,?> params, SortParameters sortParameters, PageableData pageableData)
Deprecated.Searches for all instances of model given as a generic type matching given parameters using givenSortParametersto sort results.- Parameters:
params- parameters to add to search query asMapwith parameter name as a key and parameter value as a value.sortParameters-SortParametersobject used to sort results.pageableData- the page of results to return- Returns:
- The matching page of search results
-
-