@ThreadSafe public final class

DefaultSearchHandlerManager

extends Object
implements SearchHandlerManager
java.lang.Object
   ↳ com.atlassian.jira.issue.search.managers.DefaultSearchHandlerManager

Class Overview

Default JIRA implementation of SearchHandlerManager.

Summary

Public Constructors
DefaultSearchHandlerManager(FieldManager fieldManager, CustomFieldManager customFieldManager, SystemClauseHandlerFactory systemClauseHandlerFactory, QueryCache queryCache, SingleProjectRequiringSearcherRegistry singleProjectRequiringSearcherRegistry, CacheManager cacheManager)
Public Methods
Collection<IssueSearcher<?>> getAllSearchers()
Return all the active searchers in JIRA.
Collection<ClauseHandler> getClauseHandler(User user, String jqlClauseName)
Return a collection of ClauseHandlers registered against the passed JQL clause name.
Collection<ClauseHandler> getClauseHandler(String jqlClauseName)
Return a collection of ClauseHandlers registered against the passed JQL clause name.
Collection<String> getFieldIds(String jqlClauseName)
Gets the field ids that are associated with the provided jqlClauseName.
Collection<String> getFieldIds(User searcher, String jqlClauseName)
Gets the field ids that are associated with the provided jqlClauseName.
Collection<ClauseNames> getJqlClauseNames(String fieldId)
Get the ClauseNames associated with the provided field name.
IssueSearcher<?> getSearcher(String id)
Get a searcher by the searchers name.
Collection<SearcherGroup> getSearcherGroups(SearchContext searchContext)
Get all searcher groups with the IssueSearcher that are applicable for the context.
Collection<IssueSearcher<?>> getSearchers(User searcher, SearchContext context)
Get searchers that are applicable for a given context.
Collection<IssueSearcher<?>> getSearchersByClauseName(User user, String jqlClauseName, SearchContext searchContext)
Return a collection of IssueSearchers registered against the passed JQL clause name.
Collection<ClauseHandler> getVisibleClauseHandlers(User searcher)
Get all the available clause handlers that the searcher can see.
Collection<ClauseNames> getVisibleJqlClauseNames(User searcher)
Get all the available clause names that the searcher can see.
@EventListener void onClearCache(ClearCacheEvent event)
@EventListener void onPluginModuleDisabled(PluginModuleDisabledEvent event)
@EventListener void onPluginModuleEnabled(PluginModuleEnabledEvent event)
void refresh()
Refreshes the SearchHandlerManager.
[Expand]
Inherited Methods
From class java.lang.Object
From interface com.atlassian.jira.issue.search.managers.SearchHandlerManager

Public Constructors

public DefaultSearchHandlerManager (FieldManager fieldManager, CustomFieldManager customFieldManager, SystemClauseHandlerFactory systemClauseHandlerFactory, QueryCache queryCache, SingleProjectRequiringSearcherRegistry singleProjectRequiringSearcherRegistry, CacheManager cacheManager)

Public Methods

public Collection<IssueSearcher<?>> getAllSearchers ()

Return all the active searchers in JIRA. It will not return the searchers unless they are associated with a field.

Returns
  • all the searchers in JIRA.

public Collection<ClauseHandler> getClauseHandler (User user, String jqlClauseName)

Return a collection of ClauseHandlers registered against the passed JQL clause name. This will only return the handlers that the user has permission to see as specified by the hasPermissionToUseClause(User) method. The reason this is returning a collection is that custom fields can have the same JQL clause name and therefore resolve to multiple clause handlers, this will never be the case for System fields, we don't allow it!

Parameters
user that will be used to perform a permission check.
jqlClauseName the clause name to search for.
Returns
  • A collection of ClauseHandler that are associated with the passed JQL clause name. An empty collection will be returned to indicate failure.

public Collection<ClauseHandler> getClauseHandler (String jqlClauseName)

Return a collection of ClauseHandlers registered against the passed JQL clause name. This will return all available handlers, regardless of permissions. The reason this is returning a collection is that custom fields can have the same JQL clause name and therefore resolve to multiple clause handlers, this will never be the case for System fields, we don't allow it!

Parameters
jqlClauseName the clause name to search for.
Returns
  • A collection of ClauseHandler that are associated with the passed JQL clause name. An empty collection will be returned to indicate failure.

public Collection<String> getFieldIds (String jqlClauseName)

Gets the field ids that are associated with the provided jqlClauseName. The reason this returns a collection is that custom fields can have the same JQL clause name and therefore resolve to multiple field ids.

Parameters
jqlClauseName the clause name to find the field id for.
Returns
  • the field ids that are associated with the provided jqlClauseName, empty collection if not found

public Collection<String> getFieldIds (User searcher, String jqlClauseName)

Gets the field ids that are associated with the provided jqlClauseName. The reason this returns a collection is that custom fields can have the same JQL clause name and therefore resolve to multiple field ids. This will only return the fields associated with clause handlers that the user has permission to see as specified by the hasPermissionToUseClause(com.atlassian.crowd.embedded.api.User) method.

Parameters
searcher that will be used to perform a permission check.
jqlClauseName the clause name to find the field id for.
Returns
  • the field ids that are associated with the provided jqlClauseName, empty collection if not found

public Collection<ClauseNames> getJqlClauseNames (String fieldId)

Get the ClauseNames associated with the provided field name. A collection can be returned because it is possible for multiple clause handlers to register against the same field.

Parameters
fieldId the getId().
Returns
  • the ClauseNames associated with the provided field name. Empty collection is returned when the field has no JQL names (i.e. no clause handlers) associated with it.

public IssueSearcher<?> getSearcher (String id)

Get a searcher by the searchers name.

Parameters
id the string identifier returned by com.atlassian.jira.issue.search.searchers.IssueSearcher#getSearchInformation()#getId()
Returns
  • the searcher matching the id, null if none is found.

public Collection<SearcherGroup> getSearcherGroups (SearchContext searchContext)

Get all searcher groups with the IssueSearcher that are applicable for the context. com.atlassian.jira.issue.search.searchers.IssueSearcher#getSearchRenderer()#isShown(SearchContext) method. Note that the SearcherGroup will still appear even if no IssueSearcher are shown for the group.

Parameters
searchContext for the searcher groups.
Returns

public Collection<IssueSearcher<?>> getSearchers (User searcher, SearchContext context)

Get searchers that are applicable for a given context. This is found through the com.atlassian.jira.issue.search.searchers.IssueSearcher#getSearchRenderer()#isShown(com.atlassian.jira.issue.search.SearchContext) method.

Parameters
searcher performing this action.
context for the list of searchers. Must not be null
Returns

public Collection<IssueSearcher<?>> getSearchersByClauseName (User user, String jqlClauseName, SearchContext searchContext)

Return a collection of IssueSearchers registered against the passed JQL clause name. This will only return the IssueSearchers that the user has permission to see as specified by the isShown(User, com.atlassian.jira.issue.search.SearchContext) method.

Parameters
user that will be used to perform a permission check.
jqlClauseName the clause name to search for.
searchContext the search context under which the searchers must be shown
Returns
  • A collection of IssueSearchers that are associetd with the passed JQL clause name. An empty collection will be returned to indicate failure.

public Collection<ClauseHandler> getVisibleClauseHandlers (User searcher)

Get all the available clause handlers that the searcher can see.

Parameters
searcher that will be used to perform a permission check.
Returns
  • the ClauseHandler visible to the user. Empty collection is returned when the can see no clauses.

public Collection<ClauseNames> getVisibleJqlClauseNames (User searcher)

Get all the available clause names that the searcher can see.

Parameters
searcher that will be used to perform a permission check.
Returns
  • the ClauseNames visible to the user. Empty collection is returned when the can see no clauses.

@EventListener public void onClearCache (ClearCacheEvent event)

@EventListener public void onPluginModuleDisabled (PluginModuleDisabledEvent event)

@EventListener public void onPluginModuleEnabled (PluginModuleEnabledEvent event)

public void refresh ()

Refreshes the SearchHandlerManager.