Class ProjectDeletionRequestedEvent
java.lang.Object
java.util.EventObject
com.atlassian.bitbucket.event.ApplicationEvent
com.atlassian.bitbucket.event.project.ProjectEvent
com.atlassian.bitbucket.event.project.ProjectDeletionRequestedEvent
- All Implemented Interfaces:
- CancelableEvent,- CancelState,- Serializable
Event that is raised just before a 
project is deleted. This event is synchronous, allowing
 listeners to perform clean up in the same database transaction where the project will be deleted.
 
 This event is cancelable. A listener may prevent the project from being deleted by
 canceling this event. Throwing an exception will
 not prevent the project from being deleted; the exception will be logged and ignored.
 
 This event is internally audited at the CoverageLevel.BASE level
- See Also:
- 
Field SummaryFields inherited from class java.util.EventObjectsource
- 
Constructor SummaryConstructorsConstructorDescriptionProjectDeletionRequestedEvent(Object source, Project project, CancelState cancelState) 
- 
Method SummaryModifier and TypeMethodDescriptionvoidcancel(KeyedMessage message) Cancels project deletion, providing a message explaining why.booleanRetrieves a flag indicating whether project deletion has already been canceled by another listener.Methods inherited from class com.atlassian.bitbucket.event.project.ProjectEventgetProjectMethods inherited from class com.atlassian.bitbucket.event.ApplicationEventgetDate, getUserMethods inherited from class java.util.EventObjectgetSource, toString
- 
Constructor Details- 
ProjectDeletionRequestedEventpublic ProjectDeletionRequestedEvent(@Nonnull Object source, @Nonnull Project project, @Nonnull CancelState cancelState) 
 
- 
- 
Method Details- 
cancelCancels project 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 project deletion has already been canceled by another listener.- Specified by:
- isCanceledin interface- CancelState
- Returns:
- trueif another listener has already canceled project deletion; otherwise,- false
 
 
-