Class WorklogChangedSincePage<T>

java.lang.Object
com.atlassian.jira.bc.issue.worklog.WorklogChangedSincePage<T>

@PublicApi public class WorklogChangedSincePage<T> extends Object
Holds information about a page of worklogs which were updated or deleted since a given time.
  • Constructor Details

    • WorklogChangedSincePage

      public WorklogChangedSincePage(Long since, Long until, List<T> value, boolean lastPage)
  • Method Details

    • getSince

      public Long getSince()
      Returns timestamp of the query.
    • getUntil

      public Long getUntil()
      Returns timestamp of the latest updated or deleted worklog. It may be used to get another page.
    • getChangedSince

      public List<T> getChangedSince()
      Returns a page with ids of worklogs which were modified.
    • isLastPage

      public boolean isLastPage()
      Returns true, if this is a last page.