Class PullRequestReviewCommentAddedEvent
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.PullRequestReviewCommentAddedEvent
- All Implemented Interfaces:
Serializable
@AsynchronousPreferred
public class PullRequestReviewCommentAddedEvent
extends PullRequestReviewCommentEvent
Event that is raised when a pending comment is added on a pull request.
- Since:
- 7.7
- See Also:
-
Field Summary
Fields inherited from class java.util.EventObject
source -
Constructor Summary
ConstructorsConstructorDescriptionPullRequestReviewCommentAddedEvent(Object source, PullRequest pullRequest, Comment comment) -
Method Summary
Methods inherited from class com.atlassian.bitbucket.event.pull.PullRequestReviewCommentEvent
getComment, getCommentAction, getParentMethods inherited from class com.atlassian.bitbucket.event.pull.PullRequestEvent
getAction, getPullRequestMethods inherited from class com.atlassian.bitbucket.event.ApplicationEvent
getDate, getUserMethods inherited from class java.util.EventObject
getSource, toString
-
Constructor Details
-
PullRequestReviewCommentAddedEvent
public PullRequestReviewCommentAddedEvent(@Nonnull Object source, @Nonnull PullRequest pullRequest, @Nonnull Comment comment) - Parameters:
source- the component raising the eventpullRequest- the affected pull requestcomment- the comment
-