| java.lang.Object | ||||
| ↳ | java.util.EventObject | |||
| ↳ | com.atlassian.stash.event.StashEvent | |||
| ↳ | com.atlassian.stash.event.pull.PullRequestEvent | |||
| ↳ | com.atlassian.stash.event.pull.PullRequestMergedEvent | |||
Event raised when a pull request is merged via the web UI or REST, or when a remote merge is detected.
If the pull request was merged by the system, thecommit resulting from the merge (which
may or may not be a literal merge commit, depending on the configured merge strategy) will be included. Otherwise,
if the pull request was merged remotely, meaning a commit which is a descendant of the
from ref was pushed to the to ref, the commit
will not be provided.
Listeners that are interested in all repository changes (and not just pull request merges) should listen for
RepositoryRefsChangedEvents.
|
[Expand]
Inherited Fields | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
From class
java.util.EventObject
| |||||||||||
| Public Constructors | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
Constructs a new
PullRequestMergedEvent. | |||||||||||
This constructor is deprecated.
in 3.7 for removal in 4.0.
Use
PullRequestMergedEvent(Object, PullRequest, MinimalChangeset, String, Map) instead.
| |||||||||||
Constructs a new
PullRequestMergedEvent. | |||||||||||
| Public Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
This method is deprecated.
in 3.7 for removal in 5.0. All things "changeset" are being renamed to "commit", the more common term
for the data they represent. Due to the significant number of touchpoints, the deprecated classes and
interfaces will be left in for an entire major release cycle, rather than being removed in 4.0.
Callers should use
getCommit() instead.
| |||||||||||
Retrieves a collection of the
changed refs. | |||||||||||
Retrieves the repository in which refs were changed.
| |||||||||||
|
[Expand]
Inherited Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
From class
com.atlassian.stash.event.pull.PullRequestEvent
| |||||||||||
From class
com.atlassian.stash.event.StashEvent
| |||||||||||
From class
java.util.EventObject
| |||||||||||
From class
java.lang.Object
| |||||||||||
From interface
com.atlassian.stash.event.RepositoryRefsChangedEvent
| |||||||||||
Constructs a new PullRequestMergedEvent. This is a convenience constructor for remotely-merged pull
requests, where the merge commit is not known.
| source | the entity raising the event |
|---|---|
| pullRequest | the pull request that was merged |
This constructor is deprecated.
in 3.7 for removal in 4.0.
Use PullRequestMergedEvent(Object, PullRequest, MinimalChangeset, String, Map) instead.
Constructs a new PullRequestMergedEvent. The merge commit should be provided if
the pull request was merged by the system, and should be left null if the merge was pushed by a user.
| source | the entity raising the event |
|---|---|
| pullRequest | the pull request that was merged |
| changeset | the commit that resulted from the merging the pull request via the web UI or REST, which may
by null if the pull request was merged remotely and pushed up |
Constructs a new PullRequestMergedEvent. The merge commit should be provided if
the pull request was merged by the system, and should be left null if the merge was pushed by a user.
| source | the entity raising the event |
|---|---|
| pullRequest | the pull request that was merged |
| changeset | the commit that resulted from the merging the pull request via the web UI or REST, which may
by null if the pull request was merged remotely and pushed up |
| message | the commit message, which may be null |
| context | additional context provided when merging the pull request, intended to allow plugins to add their own functionality around the merge operation |
This method is deprecated.
in 3.7 for removal in 5.0. All things "changeset" are being renamed to "commit", the more common term
for the data they represent. Due to the significant number of touchpoints, the deprecated classes and
interfaces will be left in for an entire major release cycle, rather than being removed in 4.0.
Callers should use getCommit() instead.
null if the pull request was merged remotelynull if the pull request was merged remotelynullRetrieves a collection of the changed refs.
null, it may be empty. For example, a
remotely merged pull request
will have an empty set of changes.updated refs which may be empty, if the pull request was merged
remotely, or contain a single updated ref for the pull request's target
branch, if the pull request was merged via the web UI or REST
Retrieves the repository in which refs were changed. All of the changed refs for a
single event will always be in the same repository.
true if the pull request was merged remotely and pushed up; otherwise, false
if the pull request was merged via the web UI or REST