Class PullRequestReviewCommentRepliedEvent
java.lang.Object
java.util.EventObject
com.atlassian.bitbucket.event.ApplicationEvent
com.atlassian.bitbucket.event.pull.PullRequestEvent
com.atlassian.bitbucket.event.pull.PullRequestReviewEvent
com.atlassian.bitbucket.event.pull.PullRequestReviewCommentEvent
com.atlassian.bitbucket.event.pull.PullRequestReviewCommentRepliedEvent
- All Implemented Interfaces:
Serializable
@AsynchronousPreferred
public class PullRequestReviewCommentRepliedEvent
extends PullRequestReviewCommentEvent
Event that is raised when a pending comment is added as a reply on a pull request.
- Since:
- 7.7
- See Also:
-
Field Summary
Fields inherited from class java.util.EventObject
source
-
Constructor Summary
ConstructorDescriptionPullRequestReviewCommentRepliedEvent
(Object source, PullRequest pullRequest, Comment comment, Comment parent) -
Method Summary
Methods inherited from class com.atlassian.bitbucket.event.pull.PullRequestReviewCommentEvent
getComment, getCommentAction, getParent
Methods inherited from class com.atlassian.bitbucket.event.pull.PullRequestEvent
getAction, getPullRequest
Methods inherited from class com.atlassian.bitbucket.event.ApplicationEvent
getDate, getUser
Methods inherited from class java.util.EventObject
getSource, toString
-
Constructor Details
-
PullRequestReviewCommentRepliedEvent
public PullRequestReviewCommentRepliedEvent(@Nonnull Object source, @Nonnull PullRequest pullRequest, @Nonnull Comment comment, @Nonnull Comment parent) - Parameters:
source
- the component raising the eventpullRequest
- the affected pull requestcomment
- the commentparent
- the parent of the comment
-