Package net.shibboleth.idp.authn
Interface CredentialValidator.WarningHandler
-
- All Known Implementing Classes:
ValidateCredentials
- Enclosing interface:
- CredentialValidator
@ThreadSafe public static interface CredentialValidator.WarningHandlerInterface to use to report warnings to the caller.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidhandleWarning(ProfileRequestContext profileRequestContext, AuthenticationContext authenticationContext, String message, String eventId)Reports a warning state to the caller.
-
-
-
Method Detail
-
handleWarning
void handleWarning(@Nonnull ProfileRequestContext profileRequestContext, @Nonnull AuthenticationContext authenticationContext, @Nullable String message, @Nonnull @NotEmpty String eventId)Reports a warning state to the caller.Warnings are an indication that authentication may have succeeded but with some information worth capturing.
- Parameters:
profileRequestContext- the current profile request contextauthenticationContext- the current authentication contextmessage- to reporteventId- a default webflow event to report as the result of the calling action
-
-