public class RepositoryForkRequestedEvent extends RepositoryCreationRequestedEvent
repository is forked. This event is synchronous, allowing listeners to
perform operations in the same database transaction where the forked repository will be created.
The repository attached to the event is the fork to be created. Its
origin provides the repository that will be forked to create it. Note that forks can
be created in the same project as their origin or in different one, so the projects
for the fork and its origin may or may not be the same.
This event is cancelable. A listener may prevent the repository from being forked by
canceling this event. Throwing an exception will not prevent the repository
from being forked; the exception will be logged and ignored.
Note: The repository attached to the event will not have an ID, as it has not
been created yet, but it will have its origin repository available. Any
listener which would like to create associations based on the repository ID must listen for the
RepositoryForkedEvent instead, which will include it (but will not run in the same transaction).
source| Constructor and Description |
|---|
RepositoryForkRequestedEvent(Object source,
Repository repository,
CancelState cancelState) |
cancel, isCanceledgetRepositorygetDate, getUsergetSource, toStringpublic RepositoryForkRequestedEvent(@Nonnull Object source, @Nonnull Repository repository, @Nonnull CancelState cancelState)
Copyright © 2019 Atlassian. All rights reserved.