Interface PasswordPolicyResponder
-
- All Known Implementing Classes:
AbstractPasswordPolicyResponder,PasswordPolicyResponderImpl
public interface PasswordPolicyResponderA class for translating the outcome of aPasswordPolicyOperation.- Author:
- Apache Directory Project
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description PasswordWarningprocess(PasswordPolicyOperation operation)Execute theoperationand translate the outcome as follows: SUCCESS: return null WARNING: returnPasswordWarningFAILURE: throwPasswordException
-
-
-
Method Detail
-
process
PasswordWarning process(PasswordPolicyOperation operation) throws PasswordException
Execute theoperationand translate the outcome as follows:- SUCCESS: return null
- WARNING: return
PasswordWarning - FAILURE: throw
PasswordException
- Parameters:
operation- An operation whose outcome implies password policy information- Returns:
- A
PasswordWarningif warnings are present, or null if completely successful. - Throws:
PasswordException- If theoperationwas a failure.
-
-