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 Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
sendResponse(HttpServerResponse response)
Send any required response to the client.
-
-
-
Method Detail
-
sendResponse
void sendResponse(HttpServerResponse response) throws HttpAuthenticationException
Send any required response to the client.- Parameters:
response
- theHttpServerResponse
to use to set the response / challenge.- Throws:
HttpAuthenticationException
-
-