Class SearchApplications
- java.lang.Object
-
- org.bonitasoft.engine.search.AbstractSearchEntity<org.bonitasoft.engine.business.application.Application,SApplication>
-
- org.bonitasoft.engine.api.impl.transaction.application.SearchApplications
-
- All Implemented Interfaces:
TransactionContent,TransactionContentWithResult<org.bonitasoft.engine.search.SearchResult<org.bonitasoft.engine.business.application.Application>>
public class SearchApplications extends AbstractSearchEntity<org.bonitasoft.engine.business.application.Application,SApplication>
- Author:
- Elias Ricken de Medeiros
-
-
Constructor Summary
Constructors Constructor Description SearchApplications(ApplicationService applicationService, SearchEntityDescriptor searchDescriptor, org.bonitasoft.engine.search.SearchOptions options, ApplicationModelConverter convertor)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.List<org.bonitasoft.engine.business.application.Application>convertToClientObjects(java.util.List<SApplication> serverObjects)Must convert server objects in client objects herelongexecuteCount(QueryOptions queryOptions)Execute the count herejava.util.List<SApplication>executeSearch(QueryOptions queryOptions)Execute the search here-
Methods inherited from class org.bonitasoft.engine.search.AbstractSearchEntity
execute, getResult, getSearchFilter, search, search, validateQuery
-
-
-
-
Constructor Detail
-
SearchApplications
public SearchApplications(ApplicationService applicationService, SearchEntityDescriptor searchDescriptor, org.bonitasoft.engine.search.SearchOptions options, ApplicationModelConverter convertor)
-
-
Method Detail
-
executeCount
public long executeCount(QueryOptions queryOptions) throws SBonitaReadException
Description copied from class:AbstractSearchEntityExecute the count here- Specified by:
executeCountin classAbstractSearchEntity<org.bonitasoft.engine.business.application.Application,SApplication>- Parameters:
queryOptions- The query options to execute the count with- Returns:
- The number of result on the server
- Throws:
SBonitaReadException- when the search failed to retrieve the count number
-
executeSearch
public java.util.List<SApplication> executeSearch(QueryOptions queryOptions) throws SBonitaReadException
Description copied from class:AbstractSearchEntityExecute the search here- Specified by:
executeSearchin classAbstractSearchEntity<org.bonitasoft.engine.business.application.Application,SApplication>- Parameters:
queryOptions- The query options to execute the search with- Returns:
- The list of searched server objects
- Throws:
SBonitaReadException- when the search failed to retrieve the results
-
convertToClientObjects
public java.util.List<org.bonitasoft.engine.business.application.Application> convertToClientObjects(java.util.List<SApplication> serverObjects)
Description copied from class:AbstractSearchEntityMust convert server objects in client objects here- Specified by:
convertToClientObjectsin classAbstractSearchEntity<org.bonitasoft.engine.business.application.Application,SApplication>- Parameters:
serverObjects- The server object to convert- Returns:
- The list of the client objects corresponding to the server objects
-
-