Package com.atlassian.jira.issue.index
Interface IndexedChangeHistoryFieldManager
- All Known Implementing Classes:
DefaultIndexedChangeHistoryFieldManager
@PublicApi
public interface IndexedChangeHistoryFieldManager
allows you to add and remove fields that will be indexed in the change history index
- Since:
- v4.3
-
Method Summary
Modifier and TypeMethodDescriptionvoid
void
getSupportedOperators
(String fieldName, Set<Operator> supportedOperators)
-
Method Details
-
getIndexedChangeHistoryFields
Collection<IndexedChangeHistoryField> getIndexedChangeHistoryFields()- Returns:
- a collection that contains all of the
IndexedChangeHistoryField
that will be indexed
-
addIndexedChangeHistoryField
- Parameters:
field
- AIndexedChangeHistoryField
that describes a field you want to add to the index
-
deleteIndexedChangeHistoryField
- Parameters:
field
- AIndexedChangeHistoryField
that describes a field you want to delete from being indesed.
-
getIndexedChangeHistoryFieldNames
Collection<String> getIndexedChangeHistoryFieldNames()- Returns:
- a collection that contains all of the field names that will be indexed.
-
getSupportedOperators
-