Interface ExtendedPasswordConstraint
-
- All Superinterfaces:
sailpoint.api.passwordConstraints.PasswordConstraint
- All Known Implementing Classes:
AbstractExtendedPasswordConstraint,IdentityAttributeConstraint
public interface ExtendedPasswordConstraint extends sailpoint.api.passwordConstraints.PasswordConstraint
An extended password constraint interface that includes a method to get a description
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetDescription()Returns a description of the password constraint, used by the UI to display the constraint to the user.voidsetAdmin(boolean isAdmin)Configures the admin flag for this constraint.
-
-
-
Method Detail
-
getDescription
String getDescription()
Returns a description of the password constraint, used by the UI to display the constraint to the user.- Returns:
- A description of the password constraint
-
setAdmin
void setAdmin(boolean isAdmin)
Configures the admin flag for this constraint.This may be used to skip a constraint if the admin is changing the password for a user.
- Parameters:
isAdmin- true if the current check is being done by an admin, false otherwise.
-
-