| java.lang.Object | ||
| ↳ | java.lang.Enum<E extends java.lang.Enum<E>> | |
| ↳ | com.atlassian.bitbucket.hook.repository.RepositoryHookCommitFilter | |
Describes the type of commit details a repository-hook callback is interested
in.
| Enum Values | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| RepositoryHookCommitFilter | ADDED_TO_ANY_REF | Any commit added to any ref. | |||||||||
| RepositoryHookCommitFilter | ADDED_TO_REPOSITORY | Any new commit added to any ref. | |||||||||
| RepositoryHookCommitFilter | REMOVED_FROM_ANY_REF | Any commit removed from any ref. | |||||||||
| RepositoryHookCommitFilter | REMOVED_FROM_REPOSITORY | Any commit that is removed from the branch or tag and no longer referenced in the repository. | |||||||||
| Public Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
|
[Expand]
Inherited Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
From class
java.lang.Enum
| |||||||||||
From class
java.lang.Object
| |||||||||||
From interface
java.lang.Comparable
| |||||||||||
Any commit added to any ref. Includes commits that were already present in the repository, but not yet referenced
by the branch or tag. Implies ADDED_TO_REPOSITORY
Any new commit added to any ref. Does not include commits that were already present in the repository.
Any commit removed from any ref. Includes commits that were removed from the branch or tag, but are
referenced by other branches or tags. Implies REMOVED_FROM_REPOSITORY
Any commit that is removed from the branch or tag and no longer referenced in the repository. Does not include commits that remain referenced from other branches or tags.