| java.lang.Object | ||||
| ↳ | java.util.EventObject | |||
| ↳ | com.atlassian.bitbucket.event.ApplicationEvent | |||
| ↳ | com.atlassian.bitbucket.event.project.ProjectEvent | |||
| ↳ | com.atlassian.bitbucket.event.project.ProjectDeletionRequestedEvent | |||
/**
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.
|
[Expand]
Inherited Fields | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
From class
java.util.EventObject
| |||||||||||
| Public Constructors | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| Public Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
Cancels project deletion, providing a message explaining why.
| |||||||||||
Retrieves a flag indicating whether project deletion has already been canceled by another listener.
| |||||||||||
|
[Expand]
Inherited Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
From class
com.atlassian.bitbucket.event.project.ProjectEvent
| |||||||||||
From class
com.atlassian.bitbucket.event.ApplicationEvent
| |||||||||||
From class
java.util.EventObject
| |||||||||||
From class
java.lang.Object
| |||||||||||
From interface
com.atlassian.bitbucket.util.CancelState
| |||||||||||
Cancels project deletion, providing a message explaining why.
| message | a descriptive message explaining why the operation has been canceled |
|---|
Retrieves a flag indicating whether project deletion has already been canceled by another listener.
true if another listener has already canceled project deletion; otherwise, false