Class PullRequestDeletionRequestedEvent
java.lang.Object
java.util.EventObject
com.atlassian.bitbucket.event.ApplicationEvent
com.atlassian.bitbucket.event.pull.PullRequestEvent
com.atlassian.bitbucket.event.pull.PullRequestDeletionRequestedEvent
- All Implemented Interfaces:
- CancelableEvent,- CancelState,- Serializable
@TransactionAware(IMMEDIATE)
public class PullRequestDeletionRequestedEvent
extends PullRequestEvent
implements CancelableEvent
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.
- Since:
- 5.1
- See Also:
- 
Field SummaryFields inherited from class java.util.EventObjectsource
- 
Constructor SummaryConstructorsConstructorDescriptionPullRequestDeletionRequestedEvent(Object source, PullRequest pullRequest, CancelState cancelState) 
- 
Method SummaryModifier and TypeMethodDescriptionvoidcancel(KeyedMessage message) Cancels pull request deletion, providing a message explaining why.booleanRetrieves a flag indicating whether pull request creation has already been canceled by another listener.Methods 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- 
PullRequestDeletionRequestedEventpublic PullRequestDeletionRequestedEvent(@Nonnull Object source, @Nonnull PullRequest pullRequest, @Nonnull CancelState cancelState) 
 
- 
- 
Method Details- 
cancelCancels pull request deletion, providing a message explaining why.- Specified by:
- cancelin interface- CancelState
- Parameters:
- message- a descriptive message explaining why the operation has been canceled
 
- 
isCanceledpublic boolean isCanceled()Retrieves a flag indicating whether pull request creation has already been canceled by another listener.- Specified by:
- isCanceledin interface- CancelState
- Returns:
- trueif another listener has already canceled pull request creation; otherwise,- false
 
 
-