Modifier and Type | Method and Description |
---|---|
SearchResults<Issue> |
DefaultSearchService.search(ApplicationUser searcher,
Query query,
PagerFilter pager) |
SearchResults<Issue> |
SearchService.search(ApplicationUser searcher,
Query query,
PagerFilter pager)
Search the index, and only return issues that are in the pager's range.
|
long |
DefaultSearchService.searchCount(ApplicationUser searcher,
Query query) |
long |
SearchService.searchCount(ApplicationUser searcher,
Query query)
Search the index, and return the count of the issues matching the query.
|
long |
DefaultSearchService.searchCount(ApplicationUser searcher,
Query query,
Long timeout) |
long |
SearchService.searchCount(ApplicationUser searcher,
Query query,
Long timeout)
Search the index, and return the count of the issues matching the query.
|
long |
DefaultSearchService.searchCountOverrideSecurity(ApplicationUser searcher,
Query query) |
long |
SearchService.searchCountOverrideSecurity(ApplicationUser searcher,
Query query)
Return the number of issues matching the provided search criteria, overridding any security constraints.
|
SearchResults<Issue> |
DefaultSearchService.searchOverrideSecurity(ApplicationUser searcher,
Query query,
PagerFilter pager) |
SearchResults<Issue> |
SearchService.searchOverrideSecurity(ApplicationUser searcher,
Query query,
PagerFilter pager)
Search the index, and only return issues that are in the pager's range while AND'ing the raw lucene query
to the generated query from the provided searchQuery, not taking into account any security
constraints.
|
Modifier and Type | Method and Description |
---|---|
List<Issue> |
DefaultIssueTypeSchemeService.getIssuesMatchingTypesInProjects(ApplicationUser user,
Collection<Long> projectIds,
Collection<String> issueTypeIds) |
List<Issue> |
IssueTypeSchemeService.getIssuesMatchingTypesInProjects(ApplicationUser user,
Collection<Long> projectIds,
Collection<String> issueTypeIds)
For the projects specified by
projectIds , finds the issues that are of the types given by
issueTypIds . |
long |
DefaultIssueTypeSchemeService.getNumIssuesMatchingTypesInProjects(ApplicationUser user,
Collection<Long> projectIds,
Collection<String> issueTypeIds) |
long |
IssueTypeSchemeService.getNumIssuesMatchingTypesInProjects(ApplicationUser user,
Collection<Long> projectIds,
Collection<String> issueTypeIds)
For the projects specified by
projectIds , determines how many issues are of the types given by
issueTypIds . |
Modifier and Type | Method and Description |
---|---|
StatisticsSearchResultBean |
StatisticsSearcher.completeOneDimensionalSearch(ApplicationUser user,
Query query,
String statType) |
StatisticsSearchResultBean |
StatisticsSearcher.completeOneDimensionalSearch(ApplicationUser user,
Query query,
String statType,
StatisticsSearcher.OrderBy orderBy,
StatisticsSearcher.Direction direction) |
Modifier and Type | Method and Description |
---|---|
boolean |
IndexingBackdoor.isIndexUpdatedFieldConsistent() |
Modifier and Type | Method and Description |
---|---|
IndexRecoveryResult |
IndexRecoveryManager.reindexWithVersionCheckEntitiesUpdatedInTheLast(java.time.Duration duration,
TaskProgressSink taskProgressSink)
This method uses versioning to short-circuit building documents when the index version is
already up-to-date with what's in the db.
|
Modifier and Type | Method and Description |
---|---|
CommentIterator |
DefaultRecentCommentManager.getRecentComments(SearchRequest searchRequest,
ApplicationUser user) |
CommentIterator |
RecentCommentManager.getRecentComments(SearchRequest searchRequest,
ApplicationUser user)
Deprecated.
Use
RecentCommentManager.getRecentComments(com.atlassian.jira.issue.search.SearchRequest, com.atlassian.jira.user.ApplicationUser) instead. Since v6.0.
Return an iterator over all the comments from any issues in the search request that the user can see |
Modifier and Type | Method and Description |
---|---|
void |
IssueExporter.export(Writer writer,
SearchRequest searchRequest,
SearchRequestParams searchRequestParams,
List<Field> fields)
Export the given search and fields and output it to the supplied writer.
|
Modifier and Type | Method and Description |
---|---|
void |
DefaultCsvIssueExporter.export(Writer writer,
SearchRequest searchRequest,
SearchRequestParams searchRequestParams,
List<Field> fields) |
Modifier and Type | Method and Description |
---|---|
<T> T |
DefaultTemporaryIndexProvider.indexIssuesAndSearch(Collection<? extends Issue> issues,
TemporaryIndexProvider.IndexSearcher<T> indexSearcher) |
<T> T |
TemporaryIndexProvider.indexIssuesAndSearch(Collection<? extends Issue> issues,
TemporaryIndexProvider.IndexSearcher<T> indexSearcher)
Create a temporary index, run the callback and return the computed value
|
T |
TemporaryIndexProvider.IndexSearcher.search(SearchProvider searchProvider)
Computes a result, or throws an exception if unable to do so.
|
Modifier and Type | Method and Description |
---|---|
void |
NextPreviousPager.update(SearchRequest searchRequest,
ApplicationUser user,
String currentKey)
Deprecated.
As of JIRA 6.0, issue pager is no longer generated on the server side. This method will do nothing.
|
Modifier and Type | Class and Description |
---|---|
class |
ClauseTooComplexSearchException
Thrown when a lucene is attempted to be built from a JQL query which is too complex.
|
Modifier and Type | Method and Description |
---|---|
long |
SearchProvider.getHitCount(SearchQuery query)
Return the number of documents that match the
query |
long |
SearchProvider.getHitCount(SearchQuery query,
Long timeout)
Return the number of documents that match the
query |
void |
SearchProvider.search(SearchQuery query,
org.apache.lucene.search.Collector collector)
Run a search against the Issue index with the
collector called for each document that matches the query . |
SearchResults<DocumentWithId> |
SearchProvider.search(SearchQuery query,
PagerFilter pager)
Run a search against the Issue index, loading all fields for each document.
|
SearchResults<DocumentWithId> |
SearchProvider.search(SearchQuery query,
PagerFilter pager,
Set<String> fieldsToLoad)
Run a search against the Issue index, loading only a restricted subset of fields for each document.
|
Modifier and Type | Method and Description |
---|---|
long |
LuceneSearchProvider.getHitCount(SearchQuery query) |
long |
LuceneSearchProvider.getHitCount(SearchQuery query,
Long timeout) |
void |
LuceneSearchProvider.search(SearchQuery query,
org.apache.lucene.search.Collector collector) |
SearchResults<DocumentWithId> |
LuceneSearchProvider.search(SearchQuery query,
PagerFilter pager) |
SearchResults<DocumentWithId> |
LuceneSearchProvider.search(SearchQuery query,
PagerFilter pager,
Set<String> fieldsToLoad) |
Modifier and Type | Method and Description |
---|---|
protected SearchResults<Issue> |
AbstractSearchRequestIssueTableView.getSearchResults(SearchRequest searchRequest) |
void |
SearchRequestRecentCommentsView.writeSearchResults(SearchRequest searchRequest,
SearchRequestParams searchRequestParams,
Writer writer) |
Modifier and Type | Method and Description |
---|---|
void |
SearchRequestCsvWithBomViewAllFields.writeSearchResults(SearchRequest searchRequest,
SearchRequestParams searchRequestParams,
Writer writer) |
void |
AbstractCsvSearchRequestView.writeSearchResults(SearchRequest searchRequest,
SearchRequestParams searchRequestParams,
Writer writer) |
void |
SearchRequestCsvWithBomViewCurrentFields.writeSearchResults(SearchRequest searchRequest,
SearchRequestParams searchRequestParams,
Writer writer) |
Modifier and Type | Method and Description |
---|---|
List<Integer> |
DefaultSearchRequestViewBodyWriterUtil.searchAndSort(SearchRequest searchRequest,
PagerFilter pagerFilter) |
List<Integer> |
SearchRequestViewBodyWriterUtil.searchAndSort(SearchRequest searchRequest,
PagerFilter pagerFilter)
Iterates over the issues and applying them all them all to the issue collector.
|
long |
DefaultSearchRequestViewBodyWriterUtil.searchCount(SearchRequest searchRequest) |
long |
SearchRequestViewBodyWriterUtil.searchCount(SearchRequest searchRequest)
Returns the search count
|
void |
DefaultSearchRequestViewBodyWriterUtil.writeBody(Writer writer,
AbstractIssueView issueView,
SearchRequest searchRequest,
SingleIssueWriter singleIssueWriter,
PagerFilter pagerFilter) |
void |
SearchRequestViewBodyWriterUtil.writeBody(Writer writer,
AbstractIssueView issueView,
SearchRequest searchRequest,
SingleIssueWriter singleIssueWriter,
PagerFilter pagerFilter)
Writes the body of a sinlge issue.
|
void |
DefaultSearchRequestViewBodyWriterUtil.writeTableBody(Writer writer,
IssueTableWriter issueTableWriter,
SearchRequest searchRequest,
PagerFilter pagerFilter) |
void |
SearchRequestViewBodyWriterUtil.writeTableBody(Writer writer,
IssueTableWriter issueTableWriter,
SearchRequest searchRequest,
PagerFilter pagerFilter)
Writes the body of a single issue in a table view (i.e.: Printable or Excel).
|
Modifier and Type | Method and Description |
---|---|
org.apache.lucene.search.Query |
LuceneQueryBuilder.createLuceneQuery(QueryCreationContext queryCreationContext,
Clause clause)
Converts a JQL
Clause into an lucene Query for searching JIRA lucene index. |
org.apache.lucene.search.Query |
DefaultLuceneQueryBuilder.createLuceneQuery(QueryCreationContext queryCreationContext,
Clause clause) |
Modifier and Type | Method and Description |
---|---|
List |
MockIssueManager.execute(SearchRequest searchRequest,
ApplicationUser searcher)
Takes a search request object and returns a list of issues that match the search request
|
Modifier and Type | Method and Description |
---|---|
StatsGroup |
SingleLevelGroupByReport.searchMapIssueKeys(SearchRequest request,
ApplicationUser searcher,
StatisticsMapper mapper) |
Modifier and Type | Method and Description |
---|---|
List<Issue> |
DefaultReportSubTaskFetcher.getSubTasks(ApplicationUser user,
List<Issue> parentIssues,
SubTaskInclusionOption subtaskInclusion,
boolean onlyIncludeUnresolved) |
List<Issue> |
ReportSubTaskFetcher.getSubTasks(ApplicationUser user,
List<Issue> parentIssues,
SubTaskInclusionOption subtaskInclusion,
boolean onlyIncludeUnresolved)
Given a list of parent issues, returns a list of subtasks visible to the user,
subject to the subtask inclusion policy at
SubTaskInclusionOption . |
List<Issue> |
DefaultReportSubTaskFetcher.getSubTasks(ApplicationUser user,
List<Issue> parentIssues,
SubTaskInclusionOption subtaskInclusion,
boolean onlyIncludeUnresolved,
int limit) |
List<Issue> |
ReportSubTaskFetcher.getSubTasks(ApplicationUser user,
List<Issue> parentIssues,
SubTaskInclusionOption subtaskInclusion,
boolean onlyIncludeUnresolved,
int limit)
Given a list of parent issues, returns a list of subtasks visible to the user,
subject to the subtask inclusion policy at
SubTaskInclusionOption . |
List<Issue> |
DefaultReportSubTaskFetcher.getSubTasksForUser(ApplicationUser user,
List<Issue> parentIssues,
SubTaskInclusionOption subtaskInclusion,
boolean onlyIncludeUnresolved) |
List<Issue> |
ReportSubTaskFetcher.getSubTasksForUser(ApplicationUser user,
List<Issue> parentIssues,
SubTaskInclusionOption subtaskInclusion,
boolean onlyIncludeUnresolved)
Given a list of parent issues, returns a list of subtasks visible to the user,
subject to the subtask inclusion policy at
SubTaskInclusionOption . |
Modifier and Type | Method and Description |
---|---|
abstract void |
AbstractSearchRequestView.writeSearchResults(SearchRequest searchRequest,
SearchRequestParams searchRequestParams,
Writer writer) |
void |
SearchRequestView.writeSearchResults(SearchRequest searchRequest,
SearchRequestParams searchRequestParams,
Writer writer)
Responsible for writing out the searchResults including Headers and Footers of the implementing view type.
|
Modifier and Type | Method and Description |
---|---|
ResultGroup |
IssueSearcher.getSearchedItems(int maxItemCount,
String search) |
ResultGroup |
IssueSearcher.getSearchedItems(String search) |
Modifier and Type | Method and Description |
---|---|
javax.ws.rs.core.Response |
IssueTypeSchemeResource.addProjectAssociationsToScheme(String schemeId,
AssociateProjectsBean assocProjects)
Adds additional projects to those already associated with the specified issue type scheme.
|
javax.ws.rs.core.Response |
IssueTypeSchemeResource.setProjectAssociationsForScheme(String schemeId,
AssociateProjectsBean assocProjects)
Associates the given projects with the specified issue type scheme.
|
Modifier and Type | Method and Description |
---|---|
SearchResultsBean |
SearchResource.search(String jql,
Integer startAt,
Integer maxResults,
Boolean validateQuery,
List<StringList> fields,
StringList expand)
Searches for issues using JQL.
|
SearchResultsBean |
SearchResource.searchUsingSearchRequest(SearchRequestBean searchRequest)
Performs a search using JQL.
|
Modifier and Type | Method and Description |
---|---|
long |
UserUtilImpl.getNumberOfAssignedIssuesIgnoreSecurity(ApplicationUser loggedInUser,
ApplicationUser user) |
long |
UserUtil.getNumberOfAssignedIssuesIgnoreSecurity(ApplicationUser loggedInUser,
ApplicationUser user)
Returns number of issues assigned to user
|
long |
UserUtilImpl.getNumberOfReportedIssuesIgnoreSecurity(ApplicationUser loggedInUser,
ApplicationUser user) |
long |
UserUtil.getNumberOfReportedIssuesIgnoreSecurity(ApplicationUser loggedInUser,
ApplicationUser user)
Returns number of issues reported by user
|
Modifier and Type | Method and Description |
---|---|
static String |
ExceptionUtil.getExceptionAsHtml(SearchException e) |
Modifier and Type | Method and Description |
---|---|
long |
EditFieldLayoutItemRenderer.getEffectedIssuesCount() |
Modifier and Type | Method and Description |
---|---|
long |
SelectIssueTypeSchemeForProject.getStandardIssuesCount() |
long |
SelectIssueTypeSchemeForProject.getSubTaskIssuesCount() |
Modifier and Type | Method and Description |
---|---|
long |
SelectProjectWorkflowSchemeStep2.getNumAffectedIssues(IssueType issueType) |
long |
SelectProjectWorkflowSchemeStep2.getTotalAffectedIssues(IssueType issueType) |
Modifier and Type | Method and Description |
---|---|
SearchResults<Issue> |
IssueSearchResultsAction.getSearchResults()
Return the current search results to the caller.
|
SearchResultsInfo |
IssueNavigatorSearchResultsHelperImpl.getSearchResults(Query query,
boolean isPageChanged) |
SearchResultsInfo |
IssueNavigatorSearchResultsHelper.getSearchResults(Query query,
boolean isPageChanged)
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
StatisticMapWrapper |
StatisticAccessorBean.getAllFilterBy(String type) |
StatisticMapWrapper |
StatisticAccessorBean.getAllFilterBy(String type,
StatisticAccessorBean.OrderBy orderBy,
StatisticAccessorBean.Direction direction) |
long |
StatisticAccessorBean.getCount()
Returns nuber of search results for this filter
|
Collection |
StatisticAccessorBean.getIssues()
Returns a collection of found issues for this filter
|
long |
StatisticAccessorBean.getOpenByComponent()
Stats by Component
|
long |
StatisticAccessorBean.getOpenByComponent(org.ofbiz.core.entity.GenericValue component) |
long |
StatisticAccessorBean.getOpenByFixFor()
Stats by FixFor
|
long |
StatisticAccessorBean.getOpenByFixFor(Version version) |
StatisticMapWrapper |
StatisticAccessorBean.getWrapper(StatisticsMapper mapper) |
StatisticMapWrapper |
StatisticAccessorBean.getWrapper(StatisticsMapper mapper,
StatisticAccessorBean.OrderBy orderBy,
StatisticAccessorBean.Direction direction)
Returns a
StatisticMapWrapper containing ordered search statistic results |
protected StatisticAccessorBean.SearchStatisticsResult |
StatisticAccessorBean.searchCountMap(String groupField) |
Copyright © 2002-2024 Atlassian. All Rights Reserved.