Class PullRequestCommentAddedEvent
java.lang.Object
java.util.EventObject
com.atlassian.bitbucket.event.ApplicationEvent
com.atlassian.bitbucket.event.pull.PullRequestEvent
com.atlassian.bitbucket.event.pull.PullRequestCommentEvent
com.atlassian.bitbucket.event.pull.PullRequestCommentAddedEvent
- All Implemented Interfaces:
Serializable
Event that is raised when a comment is added on a pull request.
This does not include replies, which raise a PullRequestCommentRepliedEvent
.
- See Also:
-
Field Summary
Fields inherited from class java.util.EventObject
source
-
Constructor Summary
ConstructorDescriptionPullRequestCommentAddedEvent
(Object source, PullRequest pullRequest, Comment comment) -
Method Summary
Methods inherited from class com.atlassian.bitbucket.event.pull.PullRequestCommentEvent
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
-
PullRequestCommentAddedEvent
public PullRequestCommentAddedEvent(@Nonnull Object source, @Nonnull PullRequest pullRequest, @Nonnull Comment comment) - Parameters:
source
- the component raising the eventpullRequest
- the pull request this comment relates tocomment
- the comment- Since:
- 6.6
-