public interface SearchService
The service that provides search functionality
| Modifier and Type | Method and Description | 
|---|---|
long | 
count(String query)
Counts the number of work objects which match with the query. 
 | 
List<WorkObject> | 
search(String query)
Performs a search. 
 | 
List<WorkObject> | 
search(String query,
      Integer limit,
      Integer offset)
Performs a search with paginated results. 
 | 
List<WorkObject> search(String query)
Performs a search.
query - The string defining the queryList<WorkObject> search(String query, Integer limit, Integer offset)
Performs a search with paginated results.
query - The string defining the querylimit - The limit of resultsoffset - The offset to apply to the results listlong count(String query)
Counts the number of work objects which match with the query.
query - The string defining the queryCopyright © 2010 - 2019 edorasware ag. All Rights Reserved.