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.integrations.common.rest Common classes for accessing JSON based REST APIs of third party systems.io.helidon.security.providers.oidc.common Open ID Connect (OIDC) classes usable from all OIDC related components.io.helidon.webclient A reactive client for rest calls.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.integrations.common.rest
Methods in io.helidon.integrations.common.rest that return Http.ResponseStatus Modifier and Type Method Description Http.ResponseStatusApiResponse.Builder. status()Received HTTP status.Http.ResponseStatusApiResponse. status()HTTP status returned.Http.ResponseStatusApiRestException. status()Returned HTTP status.Methods in io.helidon.integrations.common.rest with parameters of type Http.ResponseStatus Modifier and Type Method Description protected booleanRestApiBase. isEntityExpected(String path, ApiRequest<?> request, Http.RequestMethod method, String requestId, Http.ResponseStatus status)This method is only called for methods that return an optional entity.protected booleanRestApiBase. isSuccess(String path, ApiRequest<?> request, Http.RequestMethod method, String requestId, Http.ResponseStatus status)Provide information whether the response is a success response for requests with optional entity.BApiResponse.Builder. status(Http.ResponseStatus status)Response status returned by the API call.BApiRestException.BaseBuilder. status(Http.ResponseStatus status)HTTP status configured byRestApi.BResponseBuilder. status(Http.ResponseStatus status)Response status returned by the API call. -
Uses of Http.ResponseStatus in io.helidon.security.providers.oidc.common
Method parameters in io.helidon.security.providers.oidc.common with type arguments of type Http.ResponseStatus Modifier and Type Method Description static <T> Single<T>OidcConfig. postJsonResponse(WebClientRequestBuilder requestBuilder, Object toSubmit, Function<JsonObject,T> jsonProcessor, BiFunction<Http.ResponseStatus,String,Optional<T>> errorEntityProcessor, BiFunction<Throwable,String,Optional<T>> errorProcessor)Processing ofWebClientsubmit using a POST method. -
Uses of Http.ResponseStatus in io.helidon.webclient
Methods in io.helidon.webclient that return Http.ResponseStatus Modifier and Type Method Description Http.ResponseStatusWebClientResponse. status()Status of this response.Http.ResponseStatusWebClientServiceResponse. status()Status of the response. -
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 DirectHandler.TransportResponseDirectHandler. handle(DirectHandler.TransportRequest request, DirectHandler.EventType eventType, Http.ResponseStatus defaultStatus, String message)Handler of responses that bypass routing, MUST NOT block the current thread.default DirectHandler.TransportResponseDirectHandler. handle(DirectHandler.TransportRequest request, DirectHandler.EventType eventType, Http.ResponseStatus defaultStatus, Throwable t)Handler of responses that bypass routing, MUST NOT block the current thread.DirectHandler.TransportResponse.BuilderDirectHandler.TransportResponse.Builder. status(Http.ResponseStatus status)Custom status.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.
-