When running the sample code for the RSA Authentication API 8.x, The statements that are returned after you start the Authentication looks like follows:
- In case of an Authentication Failure:
Access Denied
New Pin accepted; please login again with the new Pin.
- In case of a successful authentication:
Passcode Accepted
Authentication successful
Some customers use the Sample Code that is provided as it is, so they just need to customize the Output coming from the Sample Code.
After downloading the .zip file for any 8.x RSA Authentication API from
here:
- Extract the folder, then go to examples then sample.
- Edit the file that is called \examples/sample\AuthUser.java in the extracted folder, this is the file that the Sample Code runs and it contains the main method.
- At the very first beginning of the file, you will see all the return values being initialized, you can change it to whatever you need.
private static final String ACCESS_DENIED = "Access Denied";
private static final String PASSCODE_ACCEPTED = "Passcode Accepted";
private static final String PIN_REJECTED = "New Pin rejected";
private static final String PIN_ACCEPTED = "New Pin accepted; please login again with the new Pin.";
private static final String GOOD_AUTH = "Authentication successful";
private static final String BAD_AUTH = "Authentication incomplete";
- Do not forget to Save the File.