Class RtspResponseStatuses
java.lang.Object
io.netty.handler.codec.rtsp.RtspResponseStatuses
The getStatus code and its description of a RTSP response.
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final HttpResponseStatus459 Aggregate operation not allowedstatic final HttpResponseStatus502 Bad Gatewaystatic final HttpResponseStatus400 Bad Requeststatic final HttpResponseStatus452 Conference Not Foundstatic final HttpResponseStatus100 Continuestatic final HttpResponseStatus201 Createdstatic final HttpResponseStatus462 Destination unreachablestatic final HttpResponseStatus403 Forbiddenstatic final HttpResponseStatus504 Gateway Timeoutstatic final HttpResponseStatus410 Gonestatic final HttpResponseStatus456 Header Field Not Valid for Resourcestatic final HttpResponseStatus500 Internal Server Errorstatic final HttpResponseStatus457 Invalid Rangestatic final HttpResponseStatus463 Key management failurestatic final HttpResponseStatus411 Length Requiredstatic final HttpResponseStatus250 Low on Storage Spacestatic final HttpResponseStatus405 Method Not Allowedstatic final HttpResponseStatus455 Method Not Valid in This Statestatic final HttpResponseStatus301 Moved Permanentlystatic final HttpResponseStatus302 Moved Temporarilystatic final HttpResponseStatus300 Multiple Choicesstatic final HttpResponseStatus406 Not Acceptablestatic final HttpResponseStatus453 Not Enough Bandwidthstatic final HttpResponseStatus404 Not Foundstatic final HttpResponseStatus501 Not Implementedstatic final HttpResponseStatus304 Not Modifiedstatic final HttpResponseStatus200 OKstatic final HttpResponseStatus460 Only Aggregate operation allowedstatic final HttpResponseStatus551 Option not supportedstatic final HttpResponseStatus458 Parameter Is Read-Onlystatic final HttpResponseStatus451 Parameter Not Understoodstatic final HttpResponseStatus402 Payment Requiredstatic final HttpResponseStatus412 Precondition Failedstatic final HttpResponseStatus407 Proxy Authentication Requiredstatic final HttpResponseStatus413 Request Entity Too Largestatic final HttpResponseStatus408 Request Timeoutstatic final HttpResponseStatus414 Request-URI Too Longstatic final HttpResponseStatus505 RTSP Version not supportedstatic final HttpResponseStatus503 Service Unavailablestatic final HttpResponseStatus454 Session Not Foundstatic final HttpResponseStatus401 Unauthorizedstatic final HttpResponseStatus415 Unsupported Media Typestatic final HttpResponseStatus461 Unsupported transportstatic final HttpResponseStatus305 Use Proxy -
Method Summary
Modifier and TypeMethodDescriptionstatic HttpResponseStatusvalueOf(int code) Returns theHttpResponseStatusrepresented by the specified code.
-
Field Details
-
CONTINUE
100 Continue -
OK
200 OK -
CREATED
201 Created -
LOW_STORAGE_SPACE
250 Low on Storage Space -
MULTIPLE_CHOICES
300 Multiple Choices -
MOVED_PERMANENTLY
301 Moved Permanently -
MOVED_TEMPORARILY
302 Moved Temporarily -
NOT_MODIFIED
304 Not Modified -
USE_PROXY
305 Use Proxy -
BAD_REQUEST
400 Bad Request -
UNAUTHORIZED
401 Unauthorized -
PAYMENT_REQUIRED
402 Payment Required -
FORBIDDEN
403 Forbidden -
NOT_FOUND
404 Not Found -
METHOD_NOT_ALLOWED
405 Method Not Allowed -
NOT_ACCEPTABLE
406 Not Acceptable -
PROXY_AUTHENTICATION_REQUIRED
407 Proxy Authentication Required -
REQUEST_TIMEOUT
408 Request Timeout -
GONE
410 Gone -
LENGTH_REQUIRED
411 Length Required -
PRECONDITION_FAILED
412 Precondition Failed -
REQUEST_ENTITY_TOO_LARGE
413 Request Entity Too Large -
REQUEST_URI_TOO_LONG
414 Request-URI Too Long -
UNSUPPORTED_MEDIA_TYPE
415 Unsupported Media Type -
PARAMETER_NOT_UNDERSTOOD
451 Parameter Not Understood -
CONFERENCE_NOT_FOUND
452 Conference Not Found -
NOT_ENOUGH_BANDWIDTH
453 Not Enough Bandwidth -
SESSION_NOT_FOUND
454 Session Not Found -
METHOD_NOT_VALID
455 Method Not Valid in This State -
HEADER_FIELD_NOT_VALID
456 Header Field Not Valid for Resource -
INVALID_RANGE
457 Invalid Range -
PARAMETER_IS_READONLY
458 Parameter Is Read-Only -
AGGREGATE_OPERATION_NOT_ALLOWED
459 Aggregate operation not allowed -
ONLY_AGGREGATE_OPERATION_ALLOWED
460 Only Aggregate operation allowed -
UNSUPPORTED_TRANSPORT
461 Unsupported transport -
DESTINATION_UNREACHABLE
462 Destination unreachable -
KEY_MANAGEMENT_FAILURE
463 Key management failure -
INTERNAL_SERVER_ERROR
500 Internal Server Error -
NOT_IMPLEMENTED
501 Not Implemented -
BAD_GATEWAY
502 Bad Gateway -
SERVICE_UNAVAILABLE
503 Service Unavailable -
GATEWAY_TIMEOUT
504 Gateway Timeout -
RTSP_VERSION_NOT_SUPPORTED
505 RTSP Version not supported -
OPTION_NOT_SUPPORTED
551 Option not supported
-
-
Method Details
-
valueOf
Returns theHttpResponseStatusrepresented by the specified code. If the specified code is a standard RTSP getStatus code, a cached instance will be returned. Otherwise, a new instance will be returned.
-