Writing JIRA event listeners with the atlassian-event library
All public Tempo events implements this :
com.tempoplugin.platform.api.event.Event
Although this is helpful for discovering Tempo events, we do recommend that you listen to other fine-grained events (see the list below).
Most of the Tempo events have base classes that you can listen without the distinction of the nature
of the event. For example, listening to AccountEvent
, you will receive events like
AccountChangedEvent
, AccountCreatedEvent
, AccountDeletedEvent
, etc.
Keep in mind that if for example you listen to AccountEvent
and AccountChangedEvent
, both
listening methods will be called.
Class hierarchy of the event classes.