Library: It is the place where you can keep your common components which will be shared across.
Similarly in Sail Point Identity IIQ, we have a concept of libraries where you can keep your custom java methods and can call these methods from anywhere in the workflows. Sail Point Identity IIQ has few OOTB libraries which come with product like Role, Identity, IdentityRequest etc but there's a lways a need to build custom libary.
Here are the steps to build custom library for workflows:
Disclaimer
All content provided on this blog is
for informational purposes only. The owner of this blog makes no
representations as to the accuracy or completeness of any information on
this site or found by following any link on this site. The owner will
not be liable for any errors or omissions in this information nor for
the availability of this information. The owner will not be liable for
any losses, injuries, or damages from the display or use of this
information
Similarly in Sail Point Identity IIQ, we have a concept of libraries where you can keep your custom java methods and can call these methods from anywhere in the workflows. Sail Point Identity IIQ has few OOTB libraries which come with product like Role, Identity, IdentityRequest etc but there's a lways a need to build custom libary.
Here are the steps to build custom library for workflows:
- Create a class under sailpoint.workflow package and extends WorkflowLibrary
- Add your method and pass WorkflowContext as a parameter
- Build jar and keep in the classpath
- Restart your SailPoint Identity IIQ server
Disclaimer