You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
I’m trying to write a policy violation in Sailpoint. But I don’t know how to get the rights of the user who is asking a new right. I’ve tried this:
List links1 = null;
IdentityService service = new IdentityService(context);
Application app1 = context.getObjectByName(Application.class, “Autres”);
try { links1 = service.getLinks(identity, app1);
} catch (Exception e) { System.out.println(e.getMessage());
e.printStackTrace();
} List DUList1 = new ArrayList();
if(links1.size() != 0){ Object DUObj = links1.get(0).getAttribute(“DU”);
if(DUObj != null){ if (DUObj instanceof String) DUList1.add((String) DUObj);
else DUList1.addAll((List) DUObj);
} }
It was supposed to return the list of the rights that the user has and the rights that he is asking. But it doesn’t work.
Hi Priya,
welcome to the Atlassian Community!
I am in doubt Community members can help you in detail with that. Most topics that are covered here are for Atlassian products.
The last question for Sailpoint integration was earlier this year in this thread:
https://community.atlassian.com/t5/Marketplace-Apps-Integrations/Sailpoint-IIQ-integration-with-Atlassian-Products/qaq-p/1332808
Regards,
Daniel
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.