Interface IssueFinder
- All Known Implementing Classes:
IssueFinderImpl
Deprecated.
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 Summary
Modifier and TypeMethodDescriptionfindIssue
(IssueRefJsonBean issueRef, ErrorCollection errorCollection) Deprecated.Finds an issue based on the passed-in id or key.findIssue
(String idOrKey, ErrorCollection errorCollection) Deprecated.Finds an issue based on the passed-in id or key.
-
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 keyerrorCollection
- an ErrorCollection where any errors will be added- Returns:
- an
Issue
ornull
-
findIssue
Deprecated.Finds an issue based on the passed-in id or key.- Parameters:
idOrKey
- a string that may be an an id or keyerrorCollection
- an ErrorCollection where any errors will be added- Returns:
- an
Issue
ornull
-
IssueFinderV2
instead