Interface SearchService
- All Superinterfaces:
- com.google.gwt.user.client.rpc.RemoteService
- All Known Implementing Classes:
- SearchServiceImpl
@RemoteServiceRelativePath("search")
public interface SearchService
extends com.google.gwt.user.client.rpc.RemoteService
Service responsible of Searches
- Since:
- 6.0
- Author:
- Marco Meschieri - LogicalDOC
- 
Nested Class SummaryNested Classes
- 
Method SummaryModifier and TypeMethodDescriptionvoidDeletes a previously saved searchLoads a saved searchbooleansave(GUISearchOptions options) Saves the search options in the user's working dirsearch(GUISearchOptions options) Performs a search against the databasevoidShares a search among a set of users and groups
- 
Method Details- 
searchPerforms a search against the database- Parameters:
- options- The search options
- Returns:
- Result hits and statistics
- Throws:
- ServerException- error in the server application
 
- 
saveSaves the search options in the user's working dir- Parameters:
- options- The search options
- Returns:
- true if the operation was successful and there were no duplicates
- Throws:
- ServerException- error in the server application
 
- 
deleteDeletes a previously saved search- Parameters:
- names- The saved search names
- Throws:
- ServerException- error in the server application
 
- 
loadLoads a saved search- Parameters:
- name- The saved search name
- Returns:
- the options
- Throws:
- ServerException- error in the server application
 
 
-