Hi All,
I have configured Custom authentication, I have stored the credentials in application object import sailpoint.object.Application;
// Get the application by name
Application app = context.getObjectByName(Application.class, "iBusiness");
// Set plain text attributes (not encrypted)
app.setAttribute("username_CA", "service_user");
app.setAttribute("password_CA", "123456789");
// Save and commit
context.saveObject(app);
context.commitTransaction();
return "Username and password attributes set on application."; $application_pasword_ca$
How can I encrypt and decrypt while using?