Getting Permission violation on accessing a link in jira

rambabu patina
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.
August 19, 2013

Hi,

I am working on jira-importers-plugin customization to a normal user/group. I have been changed atlassian-plugin.xml and remaining files in this plugin and made the link to outside the administration.

But when i click on 'External Import' link i am getting "Permission Violation" error as "user does not have permission to access this page".

Why it is happening. In standalone application i am not getting this error, imported succesfully. But in test machines i am getting above error.

Could you please tell me, weather jira checking permissions any where for the link. Where i need to do changes please help me.

Regards,

Patina

1 answer

1 accepted

0 votes
Answer accepted
rambabu patina
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.
August 22, 2013

By changing @WebSudoRequired to @WebSudoNotRequired annotation rectified the problem.

SrinivasD August 4, 2014

Hi Rambabu,

I am facing similar issue in my custom importer. May I know for which methods we need to add @WebSudoNotRequired annotation to avoid "Permission Violation" error.

Thanks in advance.

-Srinivas

rambabu patina
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.
August 5, 2014

Hi Srinivas, In ExternalImport.java and ImporterProcessSupport.java files you need to change the annotations from @WebSudoRequired to @WebSudoNotRequired.

Thanks,

Rambabu

SrinivasD August 5, 2014

Hi Rambabu,

Thanks a lot for your response.

As I am writing custom importer, how to change these annotations as they are part of actual importer?

In custom impporter I have included its dependency as provided so please let me know how to change this in that case?

<dependency>

<groupId>com.atlassian.jira.plugins</groupId>

<artifactId>jira-importers-plugin</artifactId>

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

<scope>provided</scope>

</dependency>

Thanks,

Srinivas

rambabu patina
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.
August 6, 2014

Hi Srinivas,

In that case you can override the classes ExternalImport and ImporterProcessSupport,and change the annotations from @WebSudoRequired to @WebSudoNotRequired and then you can use the overridden classes in your custom importer.

Thanks,

Rambabu

Suggest an answer

Log in or Sign up to answer