Class RtspResponseStatuses
java.lang.Object
org.jboss.netty.handler.codec.rtsp.RtspResponseStatuses
The status code and its description of a RTSP response.
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final HttpResponseStatus
459 Aggregate operation not allowedstatic final HttpResponseStatus
502 Bad Gatewaystatic final HttpResponseStatus
400 Bad Requeststatic final HttpResponseStatus
452 Conference Not Foundstatic final HttpResponseStatus
100 Continuestatic final HttpResponseStatus
201 Createdstatic final HttpResponseStatus
462 Destination unreachablestatic final HttpResponseStatus
403 Forbiddenstatic final HttpResponseStatus
504 Gateway Timeoutstatic final HttpResponseStatus
410 Gonestatic final HttpResponseStatus
456 Header Field Not Valid for Resourcestatic final HttpResponseStatus
500 Internal Server Errorstatic final HttpResponseStatus
457 Invalid Rangestatic final HttpResponseStatus
463 Key management failurestatic final HttpResponseStatus
411 Length Requiredstatic final HttpResponseStatus
250 Low on Storage Spacestatic final HttpResponseStatus
405 Method Not Allowedstatic final HttpResponseStatus
455 Method Not Valid in This Statestatic final HttpResponseStatus
301 Moved Permanentlystatic final HttpResponseStatus
302 Moved Temporarilystatic final HttpResponseStatus
300 Multiple Choicesstatic final HttpResponseStatus
406 Not Acceptablestatic final HttpResponseStatus
453 Not Enough Bandwidthstatic final HttpResponseStatus
404 Not Foundstatic final HttpResponseStatus
501 Not Implementedstatic final HttpResponseStatus
304 Not Modifiedstatic final HttpResponseStatus
200 OKstatic final HttpResponseStatus
460 Only Aggregate operation allowedstatic final HttpResponseStatus
551 Option not supportedstatic final HttpResponseStatus
458 Parameter Is Read-Onlystatic final HttpResponseStatus
451 Parameter Not Understoodstatic final HttpResponseStatus
402 Payment Requiredstatic final HttpResponseStatus
412 Precondition Failedstatic final HttpResponseStatus
407 Proxy Authentication Requiredstatic final HttpResponseStatus
413 Request Entity Too Largestatic final HttpResponseStatus
408 Request Timeoutstatic final HttpResponseStatus
414 Request-URI Too Longstatic final HttpResponseStatus
505 RTSP Version not supportedstatic final HttpResponseStatus
503 Service Unavailablestatic final HttpResponseStatus
454 Session Not Foundstatic final HttpResponseStatus
401 Unauthorizedstatic final HttpResponseStatus
415 Unsupported Media Typestatic final HttpResponseStatus
461 Unsupported transportstatic final HttpResponseStatus
305 Use Proxy -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic HttpResponseStatus
valueOf
(int code) Returns theHttpResponseStatus
represented 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
-
-
Constructor Details
-
RtspResponseStatuses
private RtspResponseStatuses()
-
-
Method Details
-
valueOf
Returns theHttpResponseStatus
represented by the specified code. If the specified code is a standard RTSP status code, a cached instance will be returned. Otherwise, a new instance will be returned.
-