Class PullRequestReviewEvent
java.lang.Object
java.util.EventObject
com.atlassian.bitbucket.event.ApplicationEvent
com.atlassian.bitbucket.event.pull.PullRequestEvent
com.atlassian.bitbucket.event.pull.PullRequestReviewEvent
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
PullRequestReviewCommentEvent
,PullRequestReviewDiscardedEvent
,PullRequestReviewFinishedEvent
Base class for all the pull request review related events.
- Since:
- 7.7
- See Also:
-
Field Summary
Fields inherited from class java.util.EventObject
source
-
Constructor Summary
ModifierConstructorDescriptionprotected
PullRequestReviewEvent
(Object source, PullRequest pullRequest, PullRequestAction action) -
Method Summary
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
-
PullRequestReviewEvent
protected PullRequestReviewEvent(@Nonnull Object source, @Nonnull PullRequest pullRequest, @Nonnull PullRequestAction action) - Parameters:
source
- the component raising the eventpullRequest
- the affected pull requestaction
- the action performed on the pull request
-