Package org.wildfly.security.http
Interface HttpServerResponse
public interface HttpServerResponse
Server side representation of a HTTP response.
- Author:
- Darran Lofthouse
-
Method Summary
Modifier and TypeMethodDescriptionvoidaddResponseHeader(String headerName, String headerValue) Add the specified header and value to the end of the current response headers,booleanForward the current request to a different path.Returns the output stream.voidsetResponseCookie(HttpServerCookie cookie) Sets a response cookievoidsetStatusCode(int statusCode) Set the desired status code for the current request.
-
Method Details
-
addResponseHeader
Add the specified header and value to the end of the current response headers,- Parameters:
headerName- the name of the header.headerValue- the value of the header.
-
setStatusCode
void setStatusCode(int statusCode) Set the desired status code for the current request. Note: If multiple mechanisms call this method then a resolution process will begin to decide which one to use.- Parameters:
statusCode- the response code.
-
setResponseCookie
Sets a response cookie- Parameters:
cookie- the cookie
-
getOutputStream
OutputStream getOutputStream()Returns the output stream.- Returns:
- the output stream or
nullif not supported.
-
forward
Forward the current request to a different path.- Returns:
trueif forwarding was supported and successful,falseotherwise.
-