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 Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.net.URIhandle(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.ExceptionHandle the web auth response.- Parameters:
 requestContext- theRequestContextfor the HTTP Request carrying the web auth responsewebAuthResponseContext- theWebAuthResponseContextfor 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
 
 - 
 
 -