Interface Worklog

All Superinterfaces:
WithId
All Known Implementing Classes:
WorklogImpl, WorklogImpl2

@PublicApi public interface Worklog extends WithId
Represents an issue worklog.
  • Method Details

    • getId

      Long getId()
      Specified by:
      getId in interface WithId
      Returns:
      the unique id of the entity.
    • getAuthor

      String getAuthor()
      Deprecated.
      Use getAuthorKey() instead. Since v6.0.
      Returns:
      Worklog author's key or null
    • getAuthorFullName

      String getAuthorFullName()
      Deprecated.
      Returns:
      Worklog author's display name or key if user is not existing
    • getUpdateAuthor

      String getUpdateAuthor()
      Deprecated.
      Use getAuthorKey() instead. Since v6.0.
      Returns:
      Worklog update author's key or null
    • getUpdateAuthorFullName

      String getUpdateAuthorFullName()
      Deprecated.
      Returns:
      Worklog update author's display name or key if user is not existing
    • getAuthorKey

      String getAuthorKey()
      Returns:
      Worklog author's key
    • getAuthorObject

      ApplicationUser getAuthorObject()
      Returns:
      Worklog author's object or null if is not existing
    • getUpdateAuthorKey

      String getUpdateAuthorKey()
      Returns:
      Worklog author update's key
    • getUpdateAuthorObject

      ApplicationUser getUpdateAuthorObject()
      Returns:
      Worklog author update's object or null if is not existing
    • getStartDate

      Date getStartDate()
    • getTimeSpent

      Long getTimeSpent()
    • getGroupLevel

      String getGroupLevel()
    • getRoleLevelId

      Long getRoleLevelId()
    • getRoleLevel

      ProjectRole getRoleLevel()
    • getComment

      String getComment()
    • getCreated

      Date getCreated()
    • getUpdated

      Date getUpdated()
    • getIssue

      Issue getIssue()