com.atlassian.jira.issue.comments
Interface MutableComment
- All Superinterfaces:
- Comment
public interface MutableComment
- extends Comment
Represents a comment's in JIRA.
After calling any 'setter' method, you will need to call
CommentService.update(com.opensymphony.user.User, com.atlassian.jira.issue.comments.MutableComment, boolean, com.atlassian.jira.util.ErrorCollection) which does permission checking or
CommentManager.update(com.atlassian.jira.issue.comments.Comment, boolean) which will just store the provided object, to persist the change to
the database.
| Methods inherited from interface com.atlassian.jira.issue.comments.Comment |
getAuthor, getAuthorFullName, getAuthorObject, getAuthorUser, getBody, getCreated, getGroupLevel, getId, getIssue, getRoleLevel, getRoleLevelId, getUpdateAuthor, getUpdateAuthorFullName, getUpdateAuthorObject, getUpdateAuthorUser, getUpdated |
setAuthor
void setAuthor(String author)
setBody
void setBody(String body)
setCreated
void setCreated(Date created)
setGroupLevel
void setGroupLevel(String groupLevel)
setRoleLevelId
void setRoleLevelId(Long roleLevelId)
setUpdateAuthor
void setUpdateAuthor(String updateAuthor)
setUpdated
void setUpdated(Date updated)
Copyright © 2002-2011 Atlassian. All Rights Reserved.