|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
public interface SearchService
Provides an API for searching the fisheye repositories
| Method Summary | |
|---|---|
java.util.List<ReviewData> |
getReviewsForChangeset(java.lang.String repository,
java.lang.String csid)
|
java.util.Map<java.lang.String,java.util.List<ReviewData>> |
getReviewsForChangesets(java.lang.String repository,
java.util.Set<java.lang.String> changesets)
|
java.util.List<FileRevisionKeyData> |
query(java.lang.String repository,
java.lang.String query)
Run an EyeQL query against the specified repository. |
java.util.List<FileRevisionKeyData> |
query(java.lang.String repository,
java.lang.String query,
int maxResults)
Run an EyeQL query against the specified repository. |
TabularQueryResultData |
queryAsRows(java.lang.String repository,
java.lang.String query)
Run an EyeQL query against the specified repository. |
TabularQueryResultData |
queryAsRows(java.lang.String repository,
java.lang.String query,
int maxResults)
Run an EyeQL query against the specified repository. |
| Method Detail |
|---|
java.util.List<FileRevisionKeyData> query(java.lang.String repository,
java.lang.String query,
int maxResults)
The maximum number of results will be limited to maxResults
or 3000, whichever is the smallest number.
repository - the name of the repository to searchquery - the EyeQL query to perform. Should not contain a "returns" statementmaxResults - the maximum number of results to return
maxResults
or 3000 results, whichever is the smallest number
java.util.List<FileRevisionKeyData> query(java.lang.String repository,
java.lang.String query)
The maximum number of results will be limited to 3000 results.
repository - the name of the repository to searchquery - the EyeQL query to perform. Should not contain a "returns" statement
TabularQueryResultData queryAsRows(java.lang.String repository,
java.lang.String query,
int maxResults)
The maximum number of results will be limited to maxResults
or 3000, whichever is the smallest number.
repository - the name of the repository to searchquery - the EyeQL query to perform. Should contain a "returns" statement.maxResults - the maximum number of results to return
maxResults
or 3000 results, whichever is the smallest number
TabularQueryResultData queryAsRows(java.lang.String repository,
java.lang.String query)
The maximum number of results will be limited to 3000 results.
repository - the name of the repository to searchquery - the EyeQL query to perform. Should contain a "returns" statement.
java.util.List<ReviewData> getReviewsForChangeset(java.lang.String repository,
java.lang.String csid)
repository - the name of the repository to searchcsid - the changeset id to lookup reviews for
java.util.Map<java.lang.String,java.util.List<ReviewData>> getReviewsForChangesets(java.lang.String repository,
java.util.Set<java.lang.String> changesets)
repository - the name of the repository to searchchangesets - the changeset id to lookup reviews for
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||