Interface WorklogRetriever

All Known Implementing Classes:
DefaultWorklogRetriever

public interface WorklogRetriever
Retrieves worklogs associated with an issue to be indexed
  • Method Details

    • retrieve

      List<Worklog> retrieve(Issue issue)
      Retrieves worklogs for the given issue.
      Parameters:
      issue - the issue for which worklogs are to be retrieved
      Returns:
      a list of worklogs associated with the issue
    • retrieveById

      Optional<Worklog> retrieveById(Long worklogId)
      Retrieves the worklog for the given worklog ID.
      Parameters:
      worklogId - the ID of the worklog to retrieve
      Returns:
      an Optional containing the worklog if found, or empty if not found