Interface IssueFinder

All Known Implementing Classes:
IssueFinderImpl

@Deprecated public interface IssueFinder
Deprecated.
Since 8.21. Use IssueFinderV2 instead
Finds an issue based on its 'id' or 'key'. For the key, it will follow moved issues, and try to match the key in a case-insensitive way
Since:
v5.0
See Also:
  • Method Details

    • findIssue

      @Nullable Issue findIssue(@Nonnull IssueRefJsonBean issueRef, @Nonnull ErrorCollection errorCollection)
      Deprecated.
      Finds an issue based on the passed-in id or key.
      Parameters:
      issueRef - an IssueRefJsonBean that contains either an id or key
      errorCollection - an ErrorCollection where any errors will be added
      Returns:
      an Issue or null
    • findIssue

      @Nullable Issue findIssue(@Nullable String idOrKey, @Nonnull ErrorCollection errorCollection)
      Deprecated.
      Finds an issue based on the passed-in id or key.
      Parameters:
      idOrKey - a string that may be an an id or key
      errorCollection - an ErrorCollection where any errors will be added
      Returns:
      an Issue or null