Files
developer.sailpoint.com/docs/extensibility/rules
christina-gagnon-sp 78488e1d0c Update idn_rule_utility.md
In this example of how to differentiate between the two classes of type identity,  an incorrect method for the sailpoint.rule.Identity class is referenced:

sailpoint.rule.Identity foundIdentity = idn.getIdentityById("uid");
String email = foundIdentity.getAttribute("email");

It should be changed to:

sailpoint.rule.Identity foundIdentity = idn.getIdentityById("uid");
String email = foundIdentity.getEmail();

Looks like it got changed when this content was copied from 
https://community.sailpoint.com/t5/IdentityNow-Wiki/Using-IDNRuleUtil-as-a-Wrapper-for-Common-Rule-Operations/ta-p/201496
2024-03-14 17:22:27 -05:00
..
2024-02-28 12:14:29 -05:00
2024-03-14 17:22:27 -05:00