Interface WebAuthRequestCollection.WebAuthResponseHandler
-
- All Known Subinterfaces:
WebAuthRequestCollection.BaseWebAuthResponseHandler
,WebAuthRequestCollection.LoginResponseHandler
,WebAuthRequestCollection.LogoutResponseHandler
- Enclosing class:
- WebAuthRequestCollection
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public static interface WebAuthRequestCollection.WebAuthResponseHandler
Handler for web auth responses
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.net.URI
handle(RequestContext requestContext, WebAuthResponseContext webAuthResponseContext)
Handle the web auth response.
-
-
-
Method Detail
-
handle
@Nonnull java.net.URI handle(@Nonnull RequestContext requestContext, @Nonnull WebAuthResponseContext webAuthResponseContext) throws java.lang.Exception
Handle the web auth response.- Parameters:
requestContext
- theRequestContext
for the HTTP Request carrying the web auth responsewebAuthResponseContext
- theWebAuthResponseContext
for the web auth response- Returns:
- the
URI
to which the user should be redirected after handling the web auth response - Throws:
java.lang.Exception
- if there is an unexpected problem handling the web auth response
-
-