java.lang.Object | |
↳ | com.atlassian.jira.event.issue.IssueEventBundleFactoryImpl |
Public Constructors | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Creates an IssueEventBundle for scenarios where a comment is added to an issue.
| |||||||||||
Creates an IssueEventBundle for scenarios where a comment is edited.
| |||||||||||
Creates an IssueEventBundle for scenarios where an issue is deleted.
| |||||||||||
This method uses
EventTypesForIssueChange to raise events during update. | |||||||||||
Creates an IssueEventBundle for scenarios where a workflow transition is executed.
| |||||||||||
Creates an IssueEventBundle for scenarios where the worklog of an issue has been updated.
| |||||||||||
Creates a IssueEventBundle that contains only one event equivalent to the given IssueEvent.
|
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
![]() | |||||||||||
![]() |
Creates an IssueEventBundle for scenarios where a comment is added to an issue.
issue | The issue for which the comment was added |
---|---|
user | The user that added the comment |
comment | The comment that was added |
params | Some extra parameters that can be passed to create the event. |
Creates an IssueEventBundle for scenarios where a comment is edited.
issue | The issue for which the comment is edited. |
---|---|
user | The user that edited the comment |
comment | The comment that was edited |
params | Some extra parameters that can be passed to create the event. |
Creates an IssueEventBundle for scenarios where an issue is deleted.
issue | The deleted issue issue |
---|---|
deletedIssueEventData | An object encapsulating information about the delete operation |
user | The user that deleted the issue |
This method uses EventTypesForIssueChange
to raise events during update.
issue | The updated issue |
---|---|
changeGroup | The group of changes applied to the issue |
iub | The issue update bean containing all the information about the changes on the issue |
user | The user that made the issue update |
Creates an IssueEventBundle for scenarios where a workflow transition is executed.
eventType | The type of the event |
---|---|
issue | The issue that was transitioned |
user | The user that transitioned the issue |
comment | A comment that could have been added on the transition |
changeGroup | The group of changes applied to the issue |
params | Some extra parameters that can be passed to create the event. |
sendMail | A boolean indicating whether the IssueEventBundle can be sent by email |
originalAssigneeId | The identifier of the original assignee of the issue before the transition occurred |
Creates an IssueEventBundle for scenarios where the worklog of an issue has been updated.
issue | The updated issue |
---|---|
changeGroup | The group of changes applied to the issue |
iub | The issue update bean containing all the information about the changes on the issue |
Creates a IssueEventBundle that contains only one event equivalent to the given IssueEvent.
issueEvent | The given issue event to be wrapped on an IssueEventBundle |
---|