| java.lang.Object com.knowgate.lucene.BugSearcher
BugSearcher | public class BugSearcher (Code) | | Search into a Lucene full text index for bugs
author: Sergio Montoro Ten version: 3.0 |
Method Summary | |
public static BugRecord[] | search(String sLuceneIndexPath, String sWorkArea, String sProjectGUID, String sReportedBy, String sWrittenBy, String sTitle, String sFromDate, String sToDate, String sType, String sPriority, String sSeverity, String sStatus, String sText, String sComments, int iLimit, Comparator oSortBy) |
BugSearcher | public BugSearcher()(Code) | | |
search | public static BugRecord[] search(String sLuceneIndexPath, String sWorkArea, String sProjectGUID, String sReportedBy, String sWrittenBy, String sTitle, String sFromDate, String sToDate, String sType, String sPriority, String sSeverity, String sStatus, String sText, String sComments, int iLimit, Comparator oSortBy) throws ParseException, IOException, NullPointerException(Code) | | Compose a Lucene query based on given parameters
Parameters: sLuceneIndexPath - String Base path for Lucene indexes excluding WorkArea and table name Parameters: sWorkArea - String GUID of WorkArea to be searched, cannot be null Parameters: sProject - String GUID f project to which bug belongs Parameters: sReportedBy - String Parameters: sWrittenBy - String Parameters: sTitle - String Parameters: sFromDate - String Parameters: sToDate - String Parameters: sType - String Parameters: sPriority - String Parameters: sSeverity - String Parameters: sStatus - String Parameters: sText - String Parameters: sComments - String Parameters: iLimit - int Parameters: oSortBy - Comparator BugRecord[] throws: ParseException - throws: IOException - throws: NullPointerException - |
|
|