Hi @mckiran12 - If you are generating passwords as part of a create account policy, you can use a field value rule to generate it according to your design. With a java method you decide what is included/excluded when the password is generated. Make sure it also meets the minimum requirements of any password policy in place on the target system. You could use something like this to define what’s included and then call it in your generate method:
String UPPER = “ABCDEFGHIJKLMNOPQRSTUVWXYZ”;
String LOWER = “abcdefghijklmnopqrstuvwxyz”;
String DIGITS = “0123456789”;
String SYMBOLS = “!@#$%&*()-_=+{};:,.<>/?”;
Is this for identity cube password policy? or can it also be used for application password policy?
It should apply to any password generated by IIQ. If it’s for an application, IIQ should be calculating the effective policy for the generated password based on all configured PasswordPolicy objects that apply to that application for the account requesting it plus the global policies in the system configuration that this sets.
