com.atlassian.jira.issue.worklog
Interface Worklog

All Known Implementing Classes:
WorklogImpl

@PublicApi
public interface Worklog

Represents an issue worklog.


Method Summary
 String getAuthor()
          Deprecated. Use getAuthorKey() instead. Since v6.0.
 String getAuthorFullName()
          Deprecated. Use ApplicationUser.getDisplayName() of getAuthorObject() instead. Since v6.0.
 String getAuthorKey()
           
 ApplicationUser getAuthorObject()
           
 String getComment()
           
 Date getCreated()
           
 String getGroupLevel()
           
 Long getId()
           
 Issue getIssue()
           
 ProjectRole getRoleLevel()
           
 Long getRoleLevelId()
           
 Date getStartDate()
           
 Long getTimeSpent()
           
 String getUpdateAuthor()
          Deprecated. Use getAuthorKey() instead. Since v6.0.
 String getUpdateAuthorFullName()
          Deprecated. Use ApplicationUser.getDisplayName() of getUpdateAuthorObject() instead. Since v6.0.
 String getUpdateAuthorKey()
           
 ApplicationUser getUpdateAuthorObject()
           
 Date getUpdated()
           
 

Method Detail

getId

Long getId()

getAuthor

String getAuthor()
Deprecated. Use getAuthorKey() instead. Since v6.0.

Returns:
Worklog author's key or null

getAuthorFullName

String getAuthorFullName()
Deprecated. Use ApplicationUser.getDisplayName() of getAuthorObject() instead. Since v6.0.

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. Use ApplicationUser.getDisplayName() of getUpdateAuthorObject() instead. Since v6.0.

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()


Copyright © 2002-2014 Atlassian. All Rights Reserved.