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.WebAuthResponseHandlerHandler for web auth responses
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description java.net.URIhandle(RequestContext requestContext, WebAuthResponseContext webAuthResponseContext)Handle the web auth response.default voidhandleTimeout(WebAuthRequestCollection.WebAuthTimeoutContext context)
 
- 
- 
- 
Method Detail- 
handle@Nonnull java.net.URI handle(@Nonnull RequestContext requestContext, @Nonnull WebAuthResponseContext webAuthResponseContext) throws java.lang.ExceptionHandle the web auth response.- Parameters:
- requestContext- the- RequestContextfor the HTTP Request carrying the web auth response
- webAuthResponseContext- the- WebAuthResponseContextfor the web auth response
- Returns:
- the URIto 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
 
 - 
handleTimeoutdefault void handleTimeout(@Nonnull WebAuthRequestCollection.WebAuthTimeoutContext context)
 
- 
 
-