IdentityNow
Optimizing Log Retrieval in IDN Cloud Rules
|
1 2 3 |
Identity identity = plan.getIdentity(); String logPrefix = "Active Directory BP Rule - [" + identity.getName() + "] "; |
Now, you can incorporate the logPrefix in the log lines as mentioned earlier. Correlation Rule When dealing with the Correlation Rule and access to the account object, fetch a primary identifier (e.g., STAFF_NUMBER) for enhanced identification:
|
1 2 3 |
String staffNumber = StringUtils.trimToNull(account.getStringAttribute(STAFF_NUMBER)); String logPrefix = "HR Correlation - [" + staffNumber + "] "; |
ManagerCorrelation Rule For the ManagerCorrelation Rule and access to the link object, retrieve a primary key (e.g., … Read more