How to rewrite the @java step in AuthenticationLDAPVerifyCredentials (Pega 8.1)
I need to extend the logic in the activity AuthenticationLDAPVerifyCredentials
There is a @java("myStepPage)" step which is not allowed anymore in Pega 8.1.
So I'm not able to save my changes.
I tried rewriting this to a function with a ClipboardPage parameter and the return value as type of Object.
Function: GetPageAsJavaObject--(ClipboardPage)
The java code: return ClipboardPage.toString();
But somehow this isn't working like expected. The login failed.
Even without additional changes exept using this fucntion instead of the java function doesn't work either.
Any suggestions?