Class AbstractInitializationCustomFieldSearcher
java.lang.Object
com.atlassian.jira.issue.customfields.searchers.AbstractInitializationCustomFieldSearcher
- All Implemented Interfaces:
CustomFieldSearcher,IssueSearcher<CustomField>
- Direct Known Subclasses:
AbstractDateRangeSearcher,CascadingSelectSearcher,CustomFieldLabelsSearcher,DateRangeSearcher,ExactNumberSearcher,ExactTextSearcher,GroupPickerSearcher,LabelSearcher,MultiSelectSearcher,NumberRangeSearcher,ProjectSearcher,SelectSearcher,SlowTextSearcher,TextSearcher,UserPickerGroupSearcher,UserPickerSearcher,VersionPickerSearcher
@PublicSpi
public abstract class AbstractInitializationCustomFieldSearcher
extends Object
implements CustomFieldSearcher
Abstract base class for searchers that performs the init methods for a searcher.
- Since:
- v4.0
-
Field Summary
Fields inherited from interface com.atlassian.jira.issue.search.searchers.IssueSearcher
log -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidinit(CustomFieldSearcherModuleDescriptor customFieldSearcherModuleDescriptor) Initializes the searcher.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface com.atlassian.jira.issue.customfields.CustomFieldSearcher
getCustomFieldSearcherClauseHandlerMethods inherited from interface com.atlassian.jira.issue.search.searchers.IssueSearcher
getSearchInformation, getSearchInputTransformer, getSearchRenderer, init
-
Constructor Details
-
AbstractInitializationCustomFieldSearcher
public AbstractInitializationCustomFieldSearcher()
-
-
Method Details
-
init
Description copied from interface:CustomFieldSearcherInitializes the searcher. This is called the first time this searcher is retrieved from the plugin manager. You can expect that JIRA will be initialized when this method is invoked.- Specified by:
initin interfaceCustomFieldSearcher- Parameters:
customFieldSearcherModuleDescriptor- the module descriptor that defines this searcher.
-
getDescriptor
- Specified by:
getDescriptorin interfaceCustomFieldSearcher- Returns:
- the module descriptor that defined this searcher.
-