Uses of Class
com.openinventor.remoteviz.rendering.HTTPResponse.HTTPStatus
-
Packages that use HTTPResponse.HTTPStatus Package Description com.openinventor.remoteviz.rendering Table of Contents -
-
Uses of HTTPResponse.HTTPStatus in com.openinventor.remoteviz.rendering
Methods in com.openinventor.remoteviz.rendering that return HTTPResponse.HTTPStatus Modifier and Type Method Description HTTPResponse.HTTPStatus
HTTPResponse. getStatusCode()
Returns the HTTP status.static HTTPResponse.HTTPStatus
HTTPResponse.HTTPStatus. valueOf(int val)
Returns the enum constant of this type with the specified integer valuestatic HTTPResponse.HTTPStatus
HTTPResponse.HTTPStatus. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static HTTPResponse.HTTPStatus[]
HTTPResponse.HTTPStatus. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in com.openinventor.remoteviz.rendering with parameters of type HTTPResponse.HTTPStatus Modifier and Type Method Description static java.lang.String
HTTPResponse. getReasonPhrase(HTTPResponse.HTTPStatus status)
Returns the standard HTTP reason phrase for a HTTP status code.Constructors in com.openinventor.remoteviz.rendering with parameters of type HTTPResponse.HTTPStatus Constructor Description HTTPResponse(HTTPResponse.HTTPStatus statusCode)
Creates a HTTP/1.1 response with the given status and a standard reason phrase.HTTPResponse(HTTPResponse.HTTPStatus statusCode, java.lang.String reason)
Creates a HTTP/1.1 response with the given status and reason phrase.HTTPResponse(HTTPResponse.HTTPStatus statusCode, java.lang.String reason, java.lang.String body)
Creates a HTTP/1.1 response with the given status, reason phrase and message body data.HTTPResponse(HTTPResponse.HTTPStatus statusCode, java.lang.String reason, java.lang.String body, int versionMajor, int versionMinor, HTTPHeaders headers)
Creates a HTTP response with the given status, reason phrase, message body data, version and headers.
-