Hi,
We are working on a plugin for Jira 7.2.X.
Here i noticed a strange issue which i am unable to explain why.
Old way i.e. Jira 6 way of dispatching events dispatches events in Jira 7 too i.e.
ComponentAccessor.getIssueEventManager().dispatchEvent(eventIdAsLong, issue, context, loggedInUser,false);
Where as the Jira 7 way does not dispatch an event and the Lister doe not get any events.
IssueEvent issueEvent = new IssueEvent(issue, context, loggedInUser, eventIdAsLong,false);
IssueEventBundleFactory eventBundleFactory = ComponentAccessor.getComponentOfType(IssueEventBundleFactory.class);
IssueEventBundle eventBundle = eventBundleFactory.wrapInBundle(issueEvent);
ComponentAccessor.getIssueEventManager().dispatchEvent(eventBundle);
Does anyone know what is the right way to dispatch events in Jira 7?
Thanks in advance,
Parashar
This code works for me in Jira 7, looks fairly identical to yours
Long EVENT_ID = new Long("10000")
def appuser = ComponentAccessor.getUserManager().getUserByName('userid')
IssueEventManager issueEventM = ComponentAccessor.getIssueEventManager()
IssueEventBundleFactory issueEventFactory = (IssueEventBundleFactory) ComponentAccessor.getComponent(IssueEventBundleFactory.class)
IssueEventBundle eventBundle = issueEventFactory.wrapInBundle(new IssueEvent (issue, null, appuser, EVENT_ID, true))
issueEventM.dispatchEvent(eventBundle)
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.