|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface CommentService
This is the business layer component that must be used to access all Comment
functionality.
This will perform validation before it hands off to the CommentManager
.
Operations will not be performed if validation fails.
Method Summary | |
---|---|
Comment |
create(User user,
Issue issue,
String body,
boolean dispatchEvent,
ErrorCollection errorCollection)
Creates and persists a Comment on the given Issue set with current date and time, visible to all
- no group level or role level restriction. |
Comment |
create(User user,
Issue issue,
String body,
String groupLevel,
Long roleLevelId,
boolean dispatchEvent,
ErrorCollection errorCollection)
Creates and persists a Comment on the given Issue set with current date and time. |
Comment |
create(User user,
Issue issue,
String body,
String groupLevel,
Long roleLevelId,
Date created,
boolean dispatchEvent,
ErrorCollection errorCollection)
Creates and persists a Comment on the given Issue . |
void |
delete(JiraServiceContext jiraServiceContext,
Comment comment,
boolean dispatchEvent)
Deletes a comment and updates the issue's change history and updated date. |
Comment |
getCommentById(User user,
Long commentId,
ErrorCollection errorCollection)
Will return a comment for the passed in commentId. |
List |
getCommentsForUser(User currentUser,
Issue issue,
ErrorCollection errorCollection)
Will return a list of Comment s for the given user |
MutableComment |
getMutableComment(User user,
Long commentId,
ErrorCollection errorCollection)
Will return a MutableComment for the passed in commentId. |
boolean |
hasPermissionToCreate(User user,
Issue issue,
ErrorCollection errorCollection)
Has the correct permission to create a comment for the given issue. |
boolean |
hasPermissionToDelete(JiraServiceContext jiraServiceContext,
Long commentId)
Determines whether the user can delete a comment. |
boolean |
hasPermissionToEdit(JiraServiceContext jiraServiceContext,
Long commentId)
Determines whether the user can edit a comment. |
boolean |
hasPermissionToEdit(User user,
Comment comment,
ErrorCollection errorCollection)
Determine whether the current user has the permission to edit the comment. |
boolean |
isGroupVisiblityEnabled()
Returns the flag that indicates whether group visiblity is enabled |
boolean |
isProjectRoleVisiblityEnabled()
Returns the flag that indicates whether project role visibility is enabled |
boolean |
isValidAllCommentData(User user,
Issue issue,
String body,
String groupLevel,
String roleLevelId,
ErrorCollection errorCollection)
Will call all other validate methods setting the appropriate errors in the errorCollection if any errors occur. |
boolean |
isValidCommentBody(String body,
ErrorCollection errorCollection)
Validates that the body is a valid string, if not the appropriate error is added to the errorCollection . |
boolean |
isValidCommentData(User user,
Issue issue,
String groupLevel,
String roleLevelId,
ErrorCollection errorCollection)
This method validates if the comment has the correct role and group levels set. |
void |
update(User user,
MutableComment comment,
boolean dispatchEvent,
ErrorCollection errorCollection)
Updates a Comment and sets the comments updated date to be now and the updatedAuthor to be the
passed in user. |
void |
validateCommentUpdate(User user,
Long commentId,
String body,
String groupLevel,
Long roleLevelId,
ErrorCollection errorCollection)
Confirms the parameters to update a comment are valid and that the updating user has the permission to do so. |
Method Detail |
---|
Comment create(User user, Issue issue, String body, String groupLevel, Long roleLevelId, Date created, boolean dispatchEvent, ErrorCollection errorCollection)
Comment
on the given Issue
.
user
- The User
who will be performing the operation.issue
- The Issue
you wish to associate the Comment
with. This can not be nullbody
- The body of the commentgroupLevel
- The group level visibility of the comment (null if roleLevelId specified)roleLevelId
- The role level visibility id of the comment (null if groupLevel specified)created
- The date of comment creationdispatchEvent
- whether or not you want to have an event dispatched on Comment creationerrorCollection
- holder for any errors that were thrown attempting to create a comment
Comment create(User user, Issue issue, String body, String groupLevel, Long roleLevelId, boolean dispatchEvent, ErrorCollection errorCollection)
Comment
on the given Issue
set with current date and time.
user
- The User
who will be performing the operation.issue
- The Issue
you wish to associate the Comment
with. This can not be nullbody
- The body of the commentgroupLevel
- The group level visibility of the comment (null if roleLevelId specified)roleLevelId
- The role level visibility id of the comment (null if groupLevel specified)dispatchEvent
- whether or not you want to have an event dispatched on Comment creationerrorCollection
- holder for any errors that were thrown attempting to create a comment
Comment create(User user, Issue issue, String body, boolean dispatchEvent, ErrorCollection errorCollection)
Comment
on the given Issue
set with current date and time, visible to all
- no group level or role level restriction.
user
- The User
who will be performing the operation.issue
- The Issue
you wish to associate the Comment
with. This can not be nullbody
- The body of the commentdispatchEvent
- whether or not you want to have an event dispatched on Comment creationerrorCollection
- holder for any errors that were thrown attempting to create a comment
void validateCommentUpdate(User user, Long commentId, String body, String groupLevel, Long roleLevelId, ErrorCollection errorCollection)
update(com.opensymphony.user.User, com.atlassian.jira.issue.comments.MutableComment, boolean, com.atlassian.jira.util.ErrorCollection)
to persist the changes. If an error is encountered
then the ErrorCollection
will contain the specific error message.
user
- The User
who will be performing the operation and who will be the updatedAuthor.commentId
- The id of the comment to be updated. Permissions will be checked to insure that the user
has the right to update this comment. If the comment does not exist an error will be reported.body
- The body of the comment to be updated.groupLevel
- The group level visibility of the comment (null if roleLevelId specified)roleLevelId
- The role level visibility id of the comment (null if groupLevel specified)errorCollection
- holder for any errors that were thrown attempting to update a commentvoid update(User user, MutableComment comment, boolean dispatchEvent, ErrorCollection errorCollection)
Comment
and sets the comments updated date to be now and the updatedAuthor to be the
passed in user.
user
- the user who must have permission to update this comment and who will be used as the udpateAuthorcomment
- the object that contains the changes to the comment to persist.dispatchEvent
- whether or not you want to have an event dispatched on Comment update. If false then
the issue will not be reindexed.errorCollection
- holder for any errors that were thrown attempting to update a comment
IllegalArgumentException
- if comment or its id is nullList getCommentsForUser(User currentUser, Issue issue, ErrorCollection errorCollection)
Comment
s for the given user
currentUser
- current userissue
- the issue with associated commentserrorCollection
- holder for any errors that were thrown attempting to update a comment
boolean hasPermissionToCreate(User user, Issue issue, ErrorCollection errorCollection)
user
- The User
who will be performing the operation.issue
- The Issue
you wish to associate the Comment
with. This can not be null.errorCollection
- holder for any errors that were thrown attempting permission checks
boolean hasPermissionToEdit(User user, Comment comment, ErrorCollection errorCollection)
user
- The User
who will be performing the operation.comment
- The Comment
you wish to edit.errorCollection
- holder for any errors that were thrown attempting permission checks
boolean isValidCommentBody(String body, ErrorCollection errorCollection)
errorCollection
. This method was added so
the CommentSystemField
can
validate the body and set the appropriate error message.
body
- comment body to validateerrorCollection
- holder for any errors that can occur in process of validation
boolean isValidCommentData(User user, Issue issue, String groupLevel, String roleLevelId, ErrorCollection errorCollection)
errorCollection
will contain the errors.
user
- The User
who will be performing the operation.issue
- issue to associate the comment withgroupLevel
- comment group visibility levelroleLevelId
- comment project role visibility level iderrorCollection
- holder for any errors that can occur in process of validation
boolean isValidAllCommentData(User user, Issue issue, String body, String groupLevel, String roleLevelId, ErrorCollection errorCollection)
errorCollection
if any errors occur.
user
- The User
who will be performing the operation.issue
- issue to associate the comment withbody
- comment bodygroupLevel
- comment group visibility levelroleLevelId
- comment project role visibility level iderrorCollection
- holder for any errors that can occur in process of validarion
boolean isGroupVisiblityEnabled()
boolean isProjectRoleVisiblityEnabled()
Comment getCommentById(User user, Long commentId, ErrorCollection errorCollection)
user
- who is looking up the commentcommentId
- the id representing the Comment
you would like to retrieve.errorCollection
- holder for any errors that can occur in process of validation
Comment
or null (if the user cannot browse the comment).MutableComment getMutableComment(User user, Long commentId, ErrorCollection errorCollection)
MutableComment
for the passed in commentId. This
will return null if the user does not have permission to view the
comment. The difference between this method and
getCommentById(User,Long,ErrorCollection)
is that this method
returns a version of the Comment
that we can set values on.
user
- the current user.commentId
- the id that we use to find the comment object.errorCollection
- holder for any errors that can occur in process of validation
boolean hasPermissionToDelete(JiraServiceContext jiraServiceContext, Long commentId)
jiraServiceContext
- jiraServiceContext containing the user who wishes to delete a comment and the
errorCollection that will contain any errors encountered when calling the methodcommentId
- the id of the target comment (cannot be null)
boolean hasPermissionToEdit(JiraServiceContext jiraServiceContext, Long commentId)
jiraServiceContext
- JIRA service context containing the user who wishes to edit a comment and the
errorCollection that will contain any errors encountered when calling the methodcommentId
- the id of the target comment (cannot be null)
void delete(JiraServiceContext jiraServiceContext, Comment comment, boolean dispatchEvent)
hasPermissionToDelete(com.atlassian.jira.bc.JiraServiceContext,Long)
is successfully called first.
jiraServiceContext
- containing the user who wishes to delete a comment and the errorCollection
that will contain any errors encountered when calling the methodcomment
- the comment to delete (cannot be null)dispatchEvent
- a flag indicating whether to dispatch an issue updated event. If this flag is false then
the issue will not be reindexed.
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |