Interface FixVersionHistoryService
- All Known Implementing Classes:
FixVersionHistoryServiceImpl
public interface FixVersionHistoryService
Fetches data from the change history to build a list of changes to the fix version (issues added and issues removed with corresponding dates).
This is not the same as the Released Version History field used in GH Classic.
-
Method Summary
Modifier and TypeMethodDescriptionfindVersionHistory
(com.atlassian.jira.user.ApplicationUser user, com.atlassian.query.Query query, Long versionId) Build up a map of change items relating to Fix Version, keyed by issue key, for the specifiedQuery
and version ID.
-
Method Details
-
findVersionHistory
@Nonnull ServiceOutcome<Map<String,List<FixVersionChangeEntry>>> findVersionHistory(@Nonnull com.atlassian.jira.user.ApplicationUser user, @Nonnull com.atlassian.query.Query query, @Nonnull Long versionId) Build up a map of change items relating to Fix Version, keyed by issue key, for the specifiedQuery
and version ID.- Parameters:
user
- the user performing the searchquery
- the query to find issues withversionId
- the version ID- Returns:
- the result
-