Uses of Interface
com.atlassian.bitbucket.util.CancelState
Package
Description
-
Uses of CancelState in com.atlassian.bitbucket.event
Modifier and TypeInterfaceDescriptioninterface
Augments an event with support for cancelation. -
Uses of CancelState in com.atlassian.bitbucket.event.attachment
Modifier and TypeClassDescriptionclass
Raised just before anattachment
isdeleted
.class
Raised just before anattachment
isadded
.ModifierConstructorDescriptionAttachmentDeletionRequestedEvent
(Object source, Repository repository, Attachment attachment, CancelState cancelState) AttachmentSaveRequestedEvent
(Object source, Repository repository, Attachment attachment, CancelState cancelState) Construct a newAttachmentEvent
. -
Uses of CancelState in com.atlassian.bitbucket.event.commit
Modifier and TypeClassDescriptionclass
Subclasses of this event are synchronous and allow callers to cancel the action and/or participate in the transaction (by persisting related entities, for example).class
Event that is raised before a comment is added to a commit discussion.class
Event that is raised before a comment in a commit discussion is deleted.class
Event that is raised before a comment in a commit discussion is edited.class
Event that is raised before a comment is replied to in a commit discussion.ModifierConstructorDescriptionprotected
CommitDiscussionCancelableCommentEvent
(Object source, CommitDiscussion discussion, Comment comment, Comment parent, CommentAction commentAction, CancelState cancelState) CommitDiscussionCommentAddRequestedEvent
(Object source, CommitDiscussion discussion, Comment comment, CancelState cancelState) CommitDiscussionCommentDeletionRequestedEvent
(Object source, CommitDiscussion discussion, Comment comment, Comment parent, CancelState cancelState) CommitDiscussionCommentModificationRequestedEvent
(Object source, CommitDiscussion discussion, Comment comment, Comment parent, String previousText, CancelState cancelState) CommitDiscussionCommentReplyRequestedEvent
(Object source, CommitDiscussion discussion, Comment comment, Comment parent, CancelState cancelState) -
Uses of CancelState in com.atlassian.bitbucket.event.permission
Modifier and TypeInterfaceDescriptioninterface
This event is raised before a user or group are granted a permission.interface
This event is raised before a user or group's permission is modified.interface
This event is raised before a user or group's permission is revoked.Modifier and TypeClassDescriptionclass
This event is raised before a user or group are granted a global permission.class
This event is raised before a user or group's global permission is modified.class
This event is raised before a user or group's global permission is revoked.class
This event is raised before a user or group are granted a project permission.class
This event is raised before a user or group's project permission is modified.class
This event is raised before a user or group's project permission is revoked.class
This event is raised before a user or group are granted a repository permission.class
This event is raised before a user or group's repository permission is modified.class
This event is raised before a user or group's repository permission is revoked.ModifierConstructorDescriptionGlobalPermissionGrantRequestedEvent
(Object source, Permission permission, String affectedGroup, ApplicationUser affectedUser, CancelState cancelState) GlobalPermissionModificationRequestedEvent
(Object source, Permission oldValue, Permission newValue, String affectedGroup, ApplicationUser affectedUser, CancelState cancelState) GlobalPermissionRevocationRequestedEvent
(Object source, Permission permission, String affectedGroup, ApplicationUser affectedUser, CancelState cancelState) ProjectPermissionGrantRequestedEvent
(Object source, Permission permission, Project project, String affectedGroup, ApplicationUser affectedUser, CancelState cancelState) ProjectPermissionModificationRequestedEvent
(Object source, Permission oldValue, Permission newValue, Project project, String affectedGroup, ApplicationUser affectedUser, CancelState cancelState) ProjectPermissionRevocationRequestedEvent
(Object source, Permission permission, Project project, String affectedGroup, ApplicationUser affectedUser, CancelState cancelState) RepositoryPermissionGrantRequestedEvent
(Object source, Permission permission, Repository repository, String affectedGroup, ApplicationUser affectedUser, CancelState cancelState) RepositoryPermissionModificationRequestedEvent
(Object source, Permission oldValue, Permission newValue, Repository repository, String affectedGroup, ApplicationUser affectedUser, CancelState cancelState) RepositoryPermissionRevocationRequestedEvent
(Object source, Permission permission, Repository repository, String affectedGroup, ApplicationUser affectedUser, CancelState cancelState) -
Uses of CancelState in com.atlassian.bitbucket.event.project
Modifier and TypeClassDescriptionclass
Raised just before aproject
is created.class
Event that is raised just before aproject
is deleted.class
Raised just before aproject
is updated.ModifierConstructorDescriptionProjectCreationRequestedEvent
(Object source, Project project, CancelState cancelState) ProjectDeletionRequestedEvent
(Object source, Project project, CancelState cancelState) ProjectModificationRequestedEvent
(Object source, Project oldValue, Project newValue, CancelState cancelState) -
Uses of CancelState in com.atlassian.bitbucket.event.pull
Modifier and TypeClassDescriptionclass
Subclasses of this event are synchronous and allow callers to cancel the action and/or participate in the transaction (by persisting related entities, for example).class
Event that is raised before a comment is added to a pull request.class
Event that is raised before a comment in a pull request is deleted.class
Event that is raised before a comment in a pull request is edited.class
Event that is raised before a comment is replied to in a pull request.class
Raised just before apull request
isdeleted
.class
Raised just before apull request
isopened
.ModifierConstructorDescriptionprotected
PullRequestCancelableCommentEvent
(Object source, PullRequest pullRequest, Comment comment, Comment parent, CommentAction commentAction, CancelState cancelState) PullRequestCommentAddRequestedEvent
(Object source, PullRequest pullRequest, Comment comment, CancelState cancelState) PullRequestCommentDeletionRequestedEvent
(Object source, PullRequest pullRequest, Comment comment, Comment parent, CancelState cancelState) PullRequestCommentModificationRequestedEvent
(Object source, PullRequest pullRequest, Comment comment, Comment parent, String previousText, CancelState cancelState) PullRequestCommentReplyRequestedEvent
(Object source, PullRequest pullRequest, Comment comment, Comment parent, CancelState cancelState) PullRequestDeletionRequestedEvent
(Object source, PullRequest pullRequest, CancelState cancelState) PullRequestOpenRequestedEvent
(Object source, PullRequest pullRequest, Set<ApplicationUser> reviewers, CancelState cancelState) -
Uses of CancelState in com.atlassian.bitbucket.event.repository
Modifier and TypeClassDescriptionclass
Raised just before arepository
is created.class
Raised just before arepository
is deleted.class
Raised just before arepository
is forked.class
Raised just before arepository
is updated.ModifierConstructorDescriptionRepositoryCreationRequestedEvent
(Object source, Repository repository, String defaultBranch, CancelState cancelState) RepositoryDeletionRequestedEvent
(Object source, Repository repository, CancelState cancelState, Iterable<Integer> forkIds) RepositoryForkRequestedEvent
(Object source, Repository repository, String defaultBranch, CancelState cancelState) RepositoryModificationRequestedEvent
(Object source, Repository oldValue, Repository newValue, CancelState cancelState)