java.lang.Object | ||||
↳ | java.util.EventObject | |||
↳ | com.atlassian.bitbucket.event.ApplicationEvent | |||
↳ | com.atlassian.bitbucket.event.pull.PullRequestEvent | |||
↳ | com.atlassian.bitbucket.event.pull.PullRequestDeletionRequestedEvent |
Raised just before a pull request
is deleted
. This event is
synchronous, allowing listeners to perform operations in the same database transaction where the pull request
will be deleted.
This event is cancelable
. A listener may prevent the pull request from being deleted by
canceling
this event. Throwing an exception will not prevent the pull request
from being deleted; the exception will be logged and ignored.
[Expand]
Inherited Fields | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
![]() |
Public Constructors | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Cancels pull request deletion, providing a message explaining why.
| |||||||||||
Retrieves a flag indicating whether pull request creation has already been canceled by another listener.
|
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
![]() | |||||||||||
![]() | |||||||||||
![]() | |||||||||||
![]() | |||||||||||
![]() |
Cancels pull request deletion, providing a message explaining why.
message | a descriptive message explaining why the operation has been canceled |
---|
Retrieves a flag indicating whether pull request creation has already been canceled by another listener.
true
if another listener has already canceled pull request creation; otherwise, false