| Exam Name: | SailPoint Certified IdentityIQ Engineer | ||
| Exam Code: | IdentityIQ-Engineer Dumps | ||
| Vendor: | SailPoint | Certification: | Identity Security Engineer |
| Questions: | 267 Q&A's | Shared By: | emmeline |
Is the following statement about workflow step types and their usage true?
Proposed Solution:
A step with the attribute wait= " 1 " will cause the workflow to wait for at least one minute. The workflow will be revived on the next run of the Perform Maintenance Task, after the wait period is over.
Is this a purpose of an IdentitylQ certification?
Solution: to attest lo a user ' s system access
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;
}
Can the following action be performed using Rapid Setup application onboarding?
Proposed Solution:
Specify manager correlation by mapping an identity attribute to an account attribute.