Class PullRequestCommentAddRequestedEvent
java.lang.Object
java.util.EventObject
com.atlassian.bitbucket.event.ApplicationEvent
com.atlassian.bitbucket.event.pull.PullRequestEvent
com.atlassian.bitbucket.event.pull.PullRequestCancelableCommentEvent
com.atlassian.bitbucket.event.pull.PullRequestCommentAddRequestedEvent
- All Implemented Interfaces:
CancelableEvent,CancelState,Serializable
Event that is raised before a comment is added to a pull request. This event is synchronous, allowing
listeners to perform operations in the same database transaction where the comment is added.
This event is also cancelable. A listener may prevent the comment from being added by
canceling this event. Throwing an exception will not prevent the comment from
being added; the exception will be logged and ignored.
This does not include replies, which raise a PullRequestCommentReplyRequestedEvent.
- Since:
- 6.6
- See Also:
-
Field Summary
Fields inherited from class java.util.EventObject
source -
Constructor Summary
ConstructorsConstructorDescriptionPullRequestCommentAddRequestedEvent(Object source, PullRequest pullRequest, Comment comment, CancelState cancelState) -
Method Summary
Methods inherited from class com.atlassian.bitbucket.event.pull.PullRequestCancelableCommentEvent
cancel, getComment, getCommentAction, getParent, isCanceledMethods 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
-
PullRequestCommentAddRequestedEvent
public PullRequestCommentAddRequestedEvent(@Nonnull Object source, @Nonnull PullRequest pullRequest, @Nonnull Comment comment, @Nonnull CancelState cancelState)
-