Uses of Interface
io.helidon.common.http.Http.ResponseStatus
-
Packages that use Http.ResponseStatus Package Description io.helidon.common.http HTTP APIs and implementations usable by both server and client side of the HTTP story.io.helidon.grpc.core Core classes used by both the reactive gRPC server API and gRPC client API.io.helidon.webserver Reactive web server API. -
-
Uses of Http.ResponseStatus in io.helidon.common.http
Classes in io.helidon.common.http that implement Http.ResponseStatus Modifier and Type Class Description static classHttp.StatusCommonly used status codes defined by HTTP, see HTTP/1.1 documentation for the complete list.Methods in io.helidon.common.http that return Http.ResponseStatus Modifier and Type Method Description static Http.ResponseStatusHttp.ResponseStatus. create(int statusCode)Convert a numerical status code into the corresponding ResponseStatus.static Http.ResponseStatusHttp.ResponseStatus. create(int statusCode, String reasonPhrase)Convert a numerical status code into the corresponding ResponseStatus. -
Uses of Http.ResponseStatus in io.helidon.grpc.core
Methods in io.helidon.grpc.core that return Http.ResponseStatus Modifier and Type Method Description static Http.ResponseStatusGrpcHelper. toHttpResponseStatus(io.grpc.Status status)Convert a gRPCStatusto aHttp.ResponseStatus.static Http.ResponseStatusGrpcHelper. toHttpResponseStatus(io.grpc.StatusException ex)Convert a gRPCStatusExceptionto aHttp.ResponseStatus.static Http.ResponseStatusGrpcHelper. toHttpResponseStatus(io.grpc.StatusRuntimeException ex)Convert a gRPCStatusRuntimeExceptionto aHttp.ResponseStatus. -
Uses of Http.ResponseStatus in io.helidon.webserver
Methods in io.helidon.webserver that return Http.ResponseStatus Modifier and Type Method Description Http.ResponseStatusHttpException. status()Obtain the associated http status.Http.ResponseStatusServerResponse. status()Returns actual response status code.Methods in io.helidon.webserver with parameters of type Http.ResponseStatus Modifier and Type Method Description ServerResponseServerResponse. status(Http.ResponseStatus status)Sets new HTTP status.voidBareResponse. writeStatusAndHeaders(Http.ResponseStatus status, Map<String,List<String>> headers)Send response line and headers to the client.Constructors in io.helidon.webserver with parameters of type Http.ResponseStatus Constructor Description HttpException(String message, Http.ResponseStatus status)CreatesHttpException.HttpException(String message, Http.ResponseStatus status, Throwable cause)CreatesHttpException.
-