Package org.wildfly.security.http
Interface HttpServerMechanismsResponder
- 
- 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 interface HttpServerMechanismsResponder A responder for sending either authentication challenges or responses as a result of successful authentication back to the calling client.- Author:
- Darran Lofthouse
 
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description voidsendResponse(HttpServerResponse response)Send any required response to the client.
 
- 
- 
- 
Method Detail- 
sendResponsevoid sendResponse(HttpServerResponse response) throws HttpAuthenticationException Send any required response to the client.- Parameters:
- response- the- HttpServerResponseto use to set the response / challenge.
- Throws:
- HttpAuthenticationException
 
 
- 
 
-