Class PullRequestReviewFinishedEvent
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.PullRequestReviewFinishedEvent
- All Implemented Interfaces:
- Serializable
Event that is raised when you finish a review on a pull request.
- Since:
- 7.7
- See Also:
- 
Field SummaryFields inherited from class java.util.EventObjectsource
- 
Constructor SummaryConstructorsConstructorDescriptionPullRequestReviewFinishedEvent(Object source, int commentCount, PullRequest pullRequest, boolean addedComment, PullRequestParticipantStatus participantStatus) 
- 
Method SummaryModifier and TypeMethodDescriptionintbooleanMethods inherited from class com.atlassian.bitbucket.event.pull.PullRequestEventgetAction, getPullRequestMethods inherited from class com.atlassian.bitbucket.event.ApplicationEventgetDate, getUserMethods inherited from class java.util.EventObjectgetSource, toString
- 
Constructor Details- 
PullRequestReviewFinishedEventpublic PullRequestReviewFinishedEvent(@Nonnull Object source, int commentCount, @Nonnull PullRequest pullRequest, boolean addedComment, @Nullable PullRequestParticipantStatus participantStatus) - Parameters:
- source- the component raising the event
- commentCount- the number of pending comments that got published
- pullRequest- the affected pull request
- addedComment- whether or not a general comment was added upon finishing the review
- participantStatus- the reviewer's status change on the pull request
 
 
- 
- 
Method Details- 
getParticipantStatus
- 
getCommentCountpublic int getCommentCount()
- 
isAddedCommentpublic boolean isAddedComment()
 
-