In Jira Cloud: When we use the atlassian-connect.json to setup an application link, Jira cloud uses the lifecycle.installed route (in the json file) to notify our application that the application link has finished installing.
In Jira Server: I can't find a similar callback to notify our application that the autorization credentials etc. have been set up correctly. Anyone know of any callback so our application knows that the application link has been correctly set up on Jira Server?
Thanks!
You can listen for plugin install/uninstall/enable/disable events. However, this will be unreliable when trying to listen for events about your own plugin. To trigger actions for these events, your modules should implement Spring lifecycle interfaces: InitializingBean
and DisposableBean
. The afterPropertiesSet()
and destroy()
methods on these interfaces will be called when the module is enabled or disabled,
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.