Jira 5.0 Custom Service

Tapas Mondal November 11, 2012

Dear All,

I have a custom service for Jira. This is working on Jira 4.1.2. But this is not working on Jira 5.0.

I am getting following error durin service add.

Error adding service: com.atlassian.jira.service.ServiceException: Unable to get ObjectConfiguration for Service 'null'

following is my sample code:

public ObjectConfiguration getObjectConfiguration() throws ObjectConfigurationException {

return getObjectConfiguration("issuelink", "services/com/atlassian/jira/service/services/MyIssueLinkService/MyIssueLinkService.xml", null);

}

This is an version 2 Plugin.

Please help.

1 answer

1 accepted

1 vote
Answer accepted
Andrew Pechnikov
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.
November 17, 2012

return getObjectConfiguration("issuelink", "services/com/atlassian/jira/service/services/MyIssueLinkService/MyIssueLinkService.xml", null);
Here you need to write only folders under src/main/resurces
For example

public ObjectConfiguration getObjectConfiguration() throws

ObjectConfigurationException {

return getObjectConfiguration("MYNEWSERVICE", "com/jtricks/

services/myjtricksservice.xml", null);

}

Suggest an answer

Log in or Sign up to answer