Class IssueLinkTypesIndexInfoResolver

java.lang.Object
com.atlassian.jira.jql.resolver.IssueLinkTypesIndexInfoResolver
All Implemented Interfaces:
IndexInfoResolver<IssueLinkType>

public class IssueLinkTypesIndexInfoResolver extends Object implements IndexInfoResolver<IssueLinkType>
Resolves indexed issue links by the link label.
Since:
v8.0
  • Constructor Details

    • IssueLinkTypesIndexInfoResolver

      public IssueLinkTypesIndexInfoResolver(IssueLinkTypeManager issueLinkTypeManager)
  • Method Details

    • getIndexedValues

      public List<String> getIndexedValues(String rawValue)
      Description copied from interface: IndexInfoResolver
      Provides the values in the index for the operand with the given String value.
      Specified by:
      getIndexedValues in interface IndexInfoResolver<IssueLinkType>
      Parameters:
      rawValue - the value whose indexed term equivalent is to be returned.
      Returns:
      the values to put or search for in the index, possibly empty, never containing null.
    • getIndexedValues

      public List<String> getIndexedValues(Long rawValue)
      Description copied from interface: IndexInfoResolver
      Provides the values in the index for the single value operand with the given Long value.
      Specified by:
      getIndexedValues in interface IndexInfoResolver<IssueLinkType>
      Parameters:
      rawValue - the value whose indexed term equivalent is to be returned.
      Returns:
      the values to put or search for in the index, possibly empty, never containing null.
    • getIndexedValue

      public String getIndexedValue(IssueLinkType indexedObject)
      Description copied from interface: IndexInfoResolver
      Gets an indexed value from a domain object.
      Specified by:
      getIndexedValue in interface IndexInfoResolver<IssueLinkType>
      Parameters:
      indexedObject - the domain object. Does not accept null.
      Returns:
      the indexed value.