Where can I find the complete list of PRAuthentication constants, e.g. PRAuthentication.GENERATED_CHALLENGE_STREAM?
I have a Show-HTML in a reset password activity. The step is being executed but nothing is displayed. According to some posts, I have to set the param.pyChallenge to @java("PRAuthentication.GENERATED_CHALLENGE_STREAM") before the Show-HTML step to avoid "no failure response set by custom authentication activity" error. It didn't work for me. I'm wondering if there's another constant that might do the trick.
In PRPC 7.3.1 you can find the list in the Engine API Javadocs for PRAuthentication class. You can access this from the developer portal via the "Resources" menu on the top right of the developer portal and the "Engine API". This is part of prhelp.war.
Below are the values:
static java.lang.String DEFAULT_CHALLENGE
Custom authentication return status - use Auth Service challenge settings
static java.lang.String DEFAULT_FAIL_STREAM
Custom authentication return status - use fail stream from Auth Service challenge settings
static java.lang.String DEFAULT_REDIRECT_URL
Custom authentication return status - use redirect URL from Auth Service challenge settings
static java.lang.String GENERATED_CHALLENGE_STREAM
Custom authentication return status - use challenge stream generated by authentication activity
static java.lang.String GENERATED_REDIRECT_URL
Custom authentication return status - use redirect URL from Auth Service challenge settings
(Edited for format)