@Deprecated public class

RepositoryDeleteRequestedEvent

extends RepositoryEvent
implements CancelableEvent
java.lang.Object
   ↳ java.util.EventObject
     ↳ com.atlassian.stash.event.StashEvent
       ↳ com.atlassian.stash.event.RepositoryEvent
         ↳ com.atlassian.stash.event.RepositoryDeleteRequestedEvent
Known Direct Subclasses

This class is deprecated.
Deprecated in 2.0 for removal in 3.0, replaced by RepositoryDeletionRequestedEvent.

Class Overview

Raised just before a repository is deleted. This event is synchronous, allowing listeners to perform clean up in the same database transaction where the repository will be deleted.

This event is cancelable. A listener may prevent the repository from being deleted by canceling this event. Throwing an exception will not prevent the repository from being deleted; the exception will be logged and ignored.

Summary

[Expand]
Inherited Fields
From class java.util.EventObject
Public Constructors
RepositoryDeleteRequestedEvent(Object source, Repository repository, CancelState cancelState)
Public Methods
void cancel(KeyedMessage message)
Cancels repository deletion, providing a message explaining why.
boolean isCanceled()
Retrieves a flag indicating whether repository deletion has already been canceled by another listener.
[Expand]
Inherited Methods
From class com.atlassian.stash.event.RepositoryEvent
From class com.atlassian.stash.event.StashEvent
From class java.util.EventObject
From class java.lang.Object
From interface com.atlassian.stash.util.CancelState

Public Constructors

public RepositoryDeleteRequestedEvent (Object source, Repository repository, CancelState cancelState)

Public Methods

public void cancel (KeyedMessage message)

Cancels repository deletion, providing a message explaining why.

Parameters
message a descriptive message explaining why the operation has been canceled

public boolean isCanceled ()

Retrieves a flag indicating whether repository deletion has already been canceled by another listener.

Returns
  • true if another listener has already canceled repository deletion; otherwise, false