Question 36
Is the following statement true?
Proposed Solution:
A Bundle profile must be associated to an Identity object.
Proposed Solution:
A Bundle profile must be associated to an Identity object.
Question 37
Is this a default functionality of the Lifecycle Manager (LCM) module?
Solution: Terminate Identity
Solution: Terminate Identity
Question 38
Is this a purpose of an IdentitylQ certification?
Solution: to review a snapshot of a user's system access
Solution: to review a snapshot of a user's system access
Question 39
The business analysts for a large hospital need to confirm that their role assignment rules are working correctly. They are performing a final test on the production system by certifying the users who have been assigned the role. The access reviews should be sent to the security team for final sign-off.
Will this certification type achieve the goal?
Proposed Solution:
Role Membership Certification
Will this certification type achieve the goal?
Proposed Solution:
Role Membership Certification
Question 40
The engineer uses the sailpoint.api.IdentityService in a BeanShell method to look up and return all account names for an identity on the application ' MagicBox ' . Is this a correct implementation?
Proposed Solution:
import sailpoint.api.IdentityService;
import sailpoint.api.SailPointContext;
import sailpoint.object.Identity;
import sailpoint.object.Link;
import sailpoint.tools.GeneralException;
public List getAccountNames(SailPointContext context, Identity identity) throws GeneralException { IdentityService service = new IdentityService(context); List < String > accountNames = new ArrayList < String > (); Link link = service.getLink(identity, " MagicBox " ); while (link != null) { accountNames.add(link.getNativeIdentity());
}
return accountNames;
}
Proposed Solution:
import sailpoint.api.IdentityService;
import sailpoint.api.SailPointContext;
import sailpoint.object.Identity;
import sailpoint.object.Link;
import sailpoint.tools.GeneralException;
public List getAccountNames(SailPointContext context, Identity identity) throws GeneralException { IdentityService service = new IdentityService(context); List < String > accountNames = new ArrayList < String > (); Link link = service.getLink(identity, " MagicBox " ); while (link != null) { accountNames.add(link.getNativeIdentity());
}
return accountNames;
}
