Class CommitDiscussionCommentAddedEvent
java.lang.Object
java.util.EventObject
com.atlassian.bitbucket.event.ApplicationEvent
com.atlassian.bitbucket.event.repository.RepositoryEvent
com.atlassian.bitbucket.event.commit.CommitDiscussionEvent
com.atlassian.bitbucket.event.commit.CommitDiscussionCommentEvent
com.atlassian.bitbucket.event.commit.CommitDiscussionCommentAddedEvent
- All Implemented Interfaces:
Serializable
@AsynchronousPreferred
public class CommitDiscussionCommentAddedEvent
extends CommitDiscussionCommentEvent
Event that is raised when a comment is added in a commit discussion.
This does not include replies, which raise a CommitDiscussionCommentRepliedEvent
.
- See Also:
-
Field Summary
Fields inherited from class java.util.EventObject
source
-
Constructor Summary
ConstructorDescriptionCommitDiscussionCommentAddedEvent
(Object source, CommitDiscussion discussion, Comment comment) -
Method Summary
Methods inherited from class com.atlassian.bitbucket.event.commit.CommitDiscussionCommentEvent
getComment, getCommentAction, getParent
Methods inherited from class com.atlassian.bitbucket.event.commit.CommitDiscussionEvent
getDiscussion
Methods inherited from class com.atlassian.bitbucket.event.repository.RepositoryEvent
getRepository
Methods inherited from class com.atlassian.bitbucket.event.ApplicationEvent
getDate, getUser
Methods inherited from class java.util.EventObject
getSource, toString
-
Constructor Details
-
CommitDiscussionCommentAddedEvent
public CommitDiscussionCommentAddedEvent(@Nonnull Object source, @Nonnull CommitDiscussion discussion, @Nonnull Comment comment) - Parameters:
source
- the component raising the eventdiscussion
- the commit discussion this comment relates tocomment
- the comment- Since:
- 6.6
-