Uses of Class
io.helidon.common.http.Http.Status
-
Uses of Http.Status in io.helidon.common.http
Fields in io.helidon.common.http declared as Http.StatusModifier and TypeFieldDescriptionstatic final Http.StatusHttp.Status.ACCEPTED_202202 Accepted, see HTTP/1.1 documentation .static final Http.StatusHttp.Status.BAD_GATEWAY_502502 Bad Gateway, see HTTP/1.1 documentation.static final Http.StatusHttp.Status.BAD_REQUEST_400400 Bad Request, see HTTP/1.1 documentation.static final Http.StatusHttp.Status.CONFLICT_409409 Conflict, see HTTP/1.1 documentation.static final Http.StatusHttp.Status.CONTINUE_100100 Continue, see HTTP/1.1 documentations.static final Http.StatusHttp.Status.CREATED_201201 Created, see HTTP/1.1 documentation.static final Http.StatusHttp.Status.EXPECTATION_FAILED_417417 Expectation Failed, see HTTP/1.1 documentation.static final Http.StatusHttp.Status.FORBIDDEN_403403 Forbidden, see HTTP/1.1 documentation.static final Http.StatusHttp.Status.FOUND_302302 Found, see HTTP/1.1 documentation.static final Http.StatusHttp.Status.GATEWAY_TIMEOUT_504504 Gateway Timeout, see HTTP/1.1 documentation.static final Http.StatusHttp.Status.GONE_410410 Gone, see HTTP/1.1 documentation.static final Http.StatusHttp.Status.HTTP_VERSION_NOT_SUPPORTED505 HTTP Version Not Supported, see HTTP/1.1 documentation.static final Http.StatusHttp.Status.I_AM_A_TEAPOT_418418 I'm a teapot, see Hyper Text Coffee Pot Control Protocol (HTCPCP/1.0).static final Http.StatusHttp.Status.INTERNAL_SERVER_ERROR_500500 Internal Server Error, see HTTP/1.1 documentation.static final Http.StatusHttp.Status.LENGTH_REQUIRED_411411 Length Required, see HTTP/1.1 documentation.static final Http.StatusHttp.Status.METHOD_NOT_ALLOWED_405405 Method Not Allowed, see HTTP/1.1 documentation.static final Http.StatusHttp.Status.MOVED_PERMANENTLY_301301 Moved Permanently, see HTTP/1.1 documentation.static final Http.StatusHttp.Status.NO_CONTENT_204204 No Content, see HTTP/1.1 documentation.static final Http.StatusHttp.Status.NOT_ACCEPTABLE_406406 Not Acceptable, see HTTP/1.1 documentation.static final Http.StatusHttp.Status.NOT_FOUND_404404 Not Found, see HTTP/1.1 documentation.static final Http.StatusHttp.Status.NOT_IMPLEMENTED_501501 Not Implemented, see HTTP/1.1 documentation.static final Http.StatusHttp.Status.NOT_MODIFIED_304304 Not Modified, see HTTP/1.1 documentation.static final Http.StatusHttp.Status.OK_200200 OK, see HTTP/1.1 documentation.static final Http.StatusHttp.Status.PARTIAL_CONTENT_206206 Reset Content, see HTTP/1.1 documentation.static final Http.StatusHttp.Status.PAYMENT_REQUIRED_402402 Payment Required, see HTTP/1.1 documentation.static final Http.StatusHttp.Status.PRECONDITION_FAILED_412412 Precondition Failed, see HTTP/1.1 documentation.static final Http.StatusHttp.Status.PROXY_AUTHENTICATION_REQUIRED_407407 Proxy Authentication Required, see HTTP/1.1 documentation.static final Http.StatusHttp.Status.REQUEST_ENTITY_TOO_LARGE_413413 Request Entity Too Large, see HTTP/1.1 documentation.static final Http.StatusHttp.Status.REQUEST_TIMEOUT_408408 Request Timeout, see HTTP/1.1 documentation.static final Http.StatusHttp.Status.REQUEST_URI_TOO_LONG_414414 Request-URI Too Long, see HTTP/1.1 documentation.static final Http.StatusHttp.Status.REQUESTED_RANGE_NOT_SATISFIABLE_416416 Requested Range Not Satisfiable, see HTTP/1.1 documentation.static final Http.StatusHttp.Status.RESET_CONTENT_205205 Reset Content, see HTTP/1.1 documentation.static final Http.StatusHttp.Status.SEE_OTHER_303303 See Other, see HTTP/1.1 documentation.static final Http.StatusHttp.Status.SERVICE_UNAVAILABLE_503503 Service Unavailable, see HTTP/1.1 documentation.static final Http.StatusHttp.Status.SWITCHING_PROTOCOLS_101101 Switching Protocols, see HTTP/1.1 documentations.static final Http.StatusHttp.Status.TEMPORARY_REDIRECT_307307 Temporary Redirect, see HTTP/1.1 documentation.static final Http.StatusHttp.Status.UNAUTHORIZED_401401 Unauthorized, see HTTP/1.1 documentation.static final Http.StatusHttp.Status.UNSUPPORTED_MEDIA_TYPE_415415 Unsupported Media Type, see HTTP/1.1 documentation.static final Http.StatusHttp.Status.USE_PROXY_305305 Use Proxy, see HTTP/1.1 documentation.Methods in io.helidon.common.http that return Http.StatusModifier and TypeMethodDescriptionstatic Http.StatusHttp.Status.create(int statusCode) Convert a numerical status code into the corresponding Status.static Http.StatusConvert a numerical status code into the corresponding Status.DirectHandler.EventType.defaultStatus()Default status of this event type.DirectHandler.TransportResponse.status()Configured status.final Http.StatusHttpException.status()Obtain the associated http status.RequestException.status()Configured HTTP status.Methods in io.helidon.common.http with parameters of type Http.StatusModifier and TypeMethodDescriptionDirectHandler.handle(DirectHandler.TransportRequest request, DirectHandler.EventType eventType, Http.Status defaultStatus, HeadersServerResponse responseHeaders, String message) Handler of responses that bypass routing.default DirectHandler.TransportResponseDirectHandler.handle(DirectHandler.TransportRequest request, DirectHandler.EventType eventType, Http.Status defaultStatus, HeadersServerResponse responseHeaders, Throwable thrown) Handler of responses that bypass router.DirectHandler.TransportResponse.Builder.status(Http.Status status) Custom status.RequestException.Builder.status(Http.Status status) Http status to use.Constructors in io.helidon.common.http with parameters of type Http.StatusModifierConstructorDescriptionHttpException(String message, Http.Status status) CreatesHttpException.HttpException(String message, Http.Status status, boolean keepAlive) CreatesHttpException.HttpException(String message, Http.Status status, Throwable cause) CreatesHttpException.HttpException(String message, Http.Status status, Throwable cause, boolean keepAlive) CreatesHttpException.