Hi All,
I am trying to create a plugin which requires an event to be created.
We need this event in the notification schemes to configure notifications to users on an issue when this event is triggered.
For now i have manually created the event from Jira UI but that will not be possible to do it in all the instances where this plugin is uploaded in Jira.
So I would like to know how all the following could be done
1. Create an event in Jira programmatically from plugin
2. Make sure that this create event code runs only once.
Although we can check if the event exists or not and then ignore creation, i would prefer the code does not get executed more than once.
3. How can i fetch who all should the notification be sent on this event for an issue?
Any pointers and help is greatly appreciated.
Thanks,
Parashar
#1 was fairly simple :)
Following snippet should create the event.
EventTypeManager eventTypeManager = ComponentAccessor.getEventTypeManager();
EventType newEvent = new EventType("New Test Event ", "Test event", 0l)
eventTypeManager.addEventType(newEvent);
Will keep looking for #2 & #3.
Found a way for #2.
We can use com.atlassian.sal.api.lifecycle.LifecycleAware and override the methods to do the job. The job runs only on Startup (i.e. On Jira Start up or the plugin enabled)
Will keep looking for #3.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
#3 can be done provided the issue and issue event details are available by accessing the notification manager.
Following snippet should allow one to do that.
IssueEvent issueEvent = new IssueEvent(issue, null, null, 2l);
Set<NotificationRecipient> recipients = notificationSchemeManager.getRecipients(issueEvent);
Marking the question as answered.
Please let me know if any of this can be done any better.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Atlassian Government Cloud has achieved FedRAMP Authorization at the Moderate level! Join our webinar to learn how you can accelerate mission success and move work forward faster in cloud, all while ensuring your critical data is secure.
Register NowOnline 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.