how to use get Parameter() ?

Vedant Kulkarni` April 4, 2017

How do I get project roles assigned for particular permission? I am using PermissionSchemeManager, in that I used scheme objects and then got the entities. But I am getting a projectRole ID assigned for a permission, not its name. I used schemeManager as mentioned below:

PermissionSchemeManager psm=ComponentAccessor.getPermissionSchemeManager();
List<Scheme> schemeObj1=psm.getSchemeObjects();

for(Scheme obj:schemeObj1)
{

Collection<SchemeEntity> entity1=obj.getEntities();

 for(SchemeEntity se:entity1)
{

se.getParameter(); //a projectRole ID

}

}

1 answer

0 votes
Sam Hall
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.
April 4, 2017

Hi Vedant - Are you doing this while developing an add-on?

If so, you might want to try asking your question over at https://community.developer.atlassian.com

Vedant Kulkarni` April 5, 2017

yes, I am developing an add-on.

Thank you.

Suggest an answer

Log in or Sign up to answer