Package org.flowable.common.rest.api
Class AbstractPaginateList<RES,REQ>
- java.lang.Object
-
- org.flowable.common.rest.api.AbstractPaginateList<RES,REQ>
-
- Direct Known Subclasses:
DefaultPaginateList
@Deprecated public abstract class AbstractPaginateList<RES,REQ> extends Object
Deprecated.usePaginateListUtilandListProcessorinstead- Author:
- Tijs Rademakers
-
-
Constructor Summary
Constructors Constructor Description AbstractPaginateList()Deprecated.
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Deprecated Methods Modifier and Type Method Description DataResponse<RES>paginateList(Map<String,String> requestParams, Query<?,REQ> query, String defaultSort, Map<String,QueryProperty> properties)Deprecated.DataResponse<RES>paginateList(Map<String,String> requestParams, PaginateRequest paginateRequest, Query<?,REQ> query, String defaultSort, Map<String,QueryProperty> properties)Deprecated.protected abstract List<RES>processList(List<REQ> list)Deprecated.
-
-
-
Method Detail
-
paginateList
@Deprecated public DataResponse<RES> paginateList(Map<String,String> requestParams, PaginateRequest paginateRequest, Query<?,REQ> query, String defaultSort, Map<String,QueryProperty> properties)
Deprecated.Uses the pagination parameters form the request and makes sure to order the result and set all pagination attributes for the response to render.- Parameters:
requestParams- The request containing the pagination parameterspaginateRequest-query- The query to get the paged list fromdefaultSort- The default sort column (the rest attribute) that later will be mapped to an internal engine nameproperties-
-
paginateList
@Deprecated public DataResponse<RES> paginateList(Map<String,String> requestParams, Query<?,REQ> query, String defaultSort, Map<String,QueryProperty> properties)
Deprecated.Uses the pagination parameters from the request and makes sure to order the result and set all pagination attributes for the response to render.- Parameters:
requestParams- The request containing the pagination parametersquery- The query to get the paged list fromdefaultSort- The default sort column (the rest attribute) that later will be mapped to an internal engine nameproperties-
-
-