Package io.micronaut.http.server.netty
Class NettyHttpResponseFactory
java.lang.Object
io.micronaut.http.server.netty.NettyHttpResponseFactory
- All Implemented Interfaces:
HttpResponseFactory
Implementation of
HttpResponseFactory
for Netty.- Since:
- 1.0
- Author:
- Graeme Rocher
-
Field Summary
Fields inherited from interface io.micronaut.http.HttpResponseFactory
INSTANCE
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescription<T> MutableHttpResponse<T>
ok
(T body) Creates anHttpStatus.OK
response with a body.<T> MutableHttpResponse<T>
Return a response for the given status.<T> MutableHttpResponse<T>
status
(HttpStatus status, String reason) Return a response for the given status.<T> MutableHttpResponse<T>
status
(HttpStatus status, T body) Return a response for the given status.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface io.micronaut.http.HttpResponseFactory
ok, status
-
Constructor Details
-
NettyHttpResponseFactory
public NettyHttpResponseFactory()
-
-
Method Details
-
ok
Description copied from interface:HttpResponseFactory
Creates anHttpStatus.OK
response with a body.- Specified by:
ok
in interfaceHttpResponseFactory
- Type Parameters:
T
- The body type- Parameters:
body
- The body- Returns:
- The ok response with the given body
-
status
Description copied from interface:HttpResponseFactory
Return a response for the given status.- Specified by:
status
in interfaceHttpResponseFactory
- Type Parameters:
T
- The body type- Parameters:
status
- The statusbody
- The body- Returns:
- The response
-
status
Description copied from interface:HttpResponseFactory
Return a response for the given status.- Specified by:
status
in interfaceHttpResponseFactory
- Type Parameters:
T
- The response type- Parameters:
status
- The statusreason
- An alternative reason message- Returns:
- The response
-
status
Description copied from interface:HttpResponseFactory
Return a response for the given status.- Specified by:
status
in interfaceHttpResponseFactory
- Type Parameters:
T
- The response type- Parameters:
status
- The statusreason
- An alternative reason message- Returns:
- The response
-