Class SoapSearchService
- java.lang.Object
 - 
- com.logicaldoc.webservice.AbstractService
 - 
- com.logicaldoc.webservice.soap.endpoint.SoapSearchService
 
 
 
- 
- All Implemented Interfaces:
 SearchService
- Direct Known Subclasses:
 RestSearchService
public class SoapSearchService extends AbstractService implements SearchService
Search Web Service Implementation- Since:
 - 5.2
 - Author:
 - Matteo Caruso - LogicalDOC
 
 
- 
- 
Constructor Summary
Constructors Constructor Description SoapSearchService() 
- 
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description WSSearchResultfind(String sid, WSSearchOptions opt)Performs a search by the search options.WSDocument[]findByFilename(String sid, String filename)Finds authorized documents for the current user the given filename (like operator is used)WSFolder[]findFolders(String sid, String name)Finds authorized folders for the current user containing the given name (like operator is used)- 
Methods inherited from class com.logicaldoc.webservice.AbstractService
convertDateToString, convertStringToDate, getContext, getMessageContext, isValidateSession, setContext, setMessageContext, setValidateSession 
 - 
 
 - 
 
- 
- 
Method Detail
- 
find
public WSSearchResult find(String sid, WSSearchOptions opt) throws Exception
Description copied from interface:SearchServicePerforms a search by the search options.- Specified by:
 findin interfaceSearchService- Parameters:
 sid- identifier of the sessionopt- Search options- Returns:
 - The search result
 - Throws:
 Exception- error in the server application
 
- 
findByFilename
public WSDocument[] findByFilename(String sid, String filename) throws Exception
Description copied from interface:SearchServiceFinds authorized documents for the current user the given filename (like operator is used)- Specified by:
 findByFilenamein interfaceSearchService- Parameters:
 sid- identifier of the sessionfilename- Filename of the document- Returns:
 - Collection of found documents
 - Throws:
 Exception- error in the server application
 
- 
findFolders
public WSFolder[] findFolders(String sid, String name) throws Exception
Description copied from interface:SearchServiceFinds authorized folders for the current user containing the given name (like operator is used)- Specified by:
 findFoldersin interfaceSearchService- Parameters:
 sid- identifier of the sessionname- Name of the folder- Returns:
 - Collection of found folders
 - Throws:
 Exception- error in the server application
 
 - 
 
 -