How can I add more classes in tutorial "Writing JIRA event listeners with the atlassian-event library"?

Matias Pettersen June 25, 2012

If I want to add a class called "Worksession", what would the atlassian-plugin.xml look like? And what other things do I need to think about?

<atlassian-pluginkey="${project.groupId}.${project.artifactId}"name="${project.name}"plugins-version="2">

<plugin-info>

<description>${project.description}</description>

<version>${project.version}</version>

<vendorname="${project.organization.name}"url="${project.organization.url}"/>

</plugin-info>

<component-importkey="eventPublisher"interface="com.atlassian.event.api.EventPublisher"/>

<componentkey="eventListener"class="com.example.tutorial.plugins.WorklogListener">

<description>Class that processes the incoming JIRA worklog events.</description>

</component>

<componentkey="workSession"class="com.example.tutorial.plugins.Worksession">

<description>Class that describes a Worksession-object</description>

</component>

</atlassian-plugin>

2 answers

1 accepted

0 votes
Answer accepted
Jobin Kuruvilla [Adaptavist]
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
June 25, 2012

What do you mean by a class? If it is a support class which is used in the original listener class, you don't need any entries.

But if you are planning to add another listener class, what you have done is correct.

Matias Pettersen June 25, 2012

Thanks for answering!

I just wanted a support class. It worked now!

0 votes
Sandy Rogers June 25, 2012

Hi, I did send you another question, but the above question, is not from me.

Suggest an answer

Log in or Sign up to answer