Currently, functionality for managing passwords is split across two separate API's
-> Global configurations : Here we can enable settings for the nummber of days when a password becomes inactive etc -> Password Validation API: Here we can enable predefined rules for password validation. The rules themselves are expressed as regular expressions
Since both these functionality are closely related, it would be best to expose them from within the same API. Rename /passwordvalidationpolicy to /passwordpreferences and move all password related functionality from Global preferences to this API
|