Class RtspResponseStatuses


  • public final class RtspResponseStatuses
    extends Object
    The getStatus code and its description of a RTSP response.
    • Field Detail

      • LOW_STORAGE_SPACE

        public static final HttpResponseStatus LOW_STORAGE_SPACE
        250 Low on Storage Space
      • MULTIPLE_CHOICES

        public static final HttpResponseStatus MULTIPLE_CHOICES
        300 Multiple Choices
      • MOVED_PERMANENTLY

        public static final HttpResponseStatus MOVED_PERMANENTLY
        301 Moved Permanently
      • MOVED_TEMPORARILY

        public static final HttpResponseStatus MOVED_TEMPORARILY
        302 Moved Temporarily
      • PAYMENT_REQUIRED

        public static final HttpResponseStatus PAYMENT_REQUIRED
        402 Payment Required
      • METHOD_NOT_ALLOWED

        public static final HttpResponseStatus METHOD_NOT_ALLOWED
        405 Method Not Allowed
      • NOT_ACCEPTABLE

        public static final HttpResponseStatus NOT_ACCEPTABLE
        406 Not Acceptable
      • PROXY_AUTHENTICATION_REQUIRED

        public static final HttpResponseStatus PROXY_AUTHENTICATION_REQUIRED
        407 Proxy Authentication Required
      • REQUEST_TIMEOUT

        public static final HttpResponseStatus REQUEST_TIMEOUT
        408 Request Timeout
      • LENGTH_REQUIRED

        public static final HttpResponseStatus LENGTH_REQUIRED
        411 Length Required
      • PRECONDITION_FAILED

        public static final HttpResponseStatus PRECONDITION_FAILED
        412 Precondition Failed
      • REQUEST_ENTITY_TOO_LARGE

        public static final HttpResponseStatus REQUEST_ENTITY_TOO_LARGE
        413 Request Entity Too Large
      • REQUEST_URI_TOO_LONG

        public static final HttpResponseStatus REQUEST_URI_TOO_LONG
        414 Request-URI Too Long
      • UNSUPPORTED_MEDIA_TYPE

        public static final HttpResponseStatus UNSUPPORTED_MEDIA_TYPE
        415 Unsupported Media Type
      • PARAMETER_NOT_UNDERSTOOD

        public static final HttpResponseStatus PARAMETER_NOT_UNDERSTOOD
        451 Parameter Not Understood
      • CONFERENCE_NOT_FOUND

        public static final HttpResponseStatus CONFERENCE_NOT_FOUND
        452 Conference Not Found
      • NOT_ENOUGH_BANDWIDTH

        public static final HttpResponseStatus NOT_ENOUGH_BANDWIDTH
        453 Not Enough Bandwidth
      • SESSION_NOT_FOUND

        public static final HttpResponseStatus SESSION_NOT_FOUND
        454 Session Not Found
      • METHOD_NOT_VALID

        public static final HttpResponseStatus METHOD_NOT_VALID
        455 Method Not Valid in This State
      • HEADER_FIELD_NOT_VALID

        public static final HttpResponseStatus HEADER_FIELD_NOT_VALID
        456 Header Field Not Valid for Resource
      • PARAMETER_IS_READONLY

        public static final HttpResponseStatus PARAMETER_IS_READONLY
        458 Parameter Is Read-Only
      • AGGREGATE_OPERATION_NOT_ALLOWED

        public static final HttpResponseStatus AGGREGATE_OPERATION_NOT_ALLOWED
        459 Aggregate operation not allowed
      • ONLY_AGGREGATE_OPERATION_ALLOWED

        public static final HttpResponseStatus ONLY_AGGREGATE_OPERATION_ALLOWED
        460 Only Aggregate operation allowed
      • UNSUPPORTED_TRANSPORT

        public static final HttpResponseStatus UNSUPPORTED_TRANSPORT
        461 Unsupported transport
      • DESTINATION_UNREACHABLE

        public static final HttpResponseStatus DESTINATION_UNREACHABLE
        462 Destination unreachable
      • KEY_MANAGEMENT_FAILURE

        public static final HttpResponseStatus KEY_MANAGEMENT_FAILURE
        463 Key management failure
      • INTERNAL_SERVER_ERROR

        public static final HttpResponseStatus INTERNAL_SERVER_ERROR
        500 Internal Server Error
      • NOT_IMPLEMENTED

        public static final HttpResponseStatus NOT_IMPLEMENTED
        501 Not Implemented
      • SERVICE_UNAVAILABLE

        public static final HttpResponseStatus SERVICE_UNAVAILABLE
        503 Service Unavailable
      • GATEWAY_TIMEOUT

        public static final HttpResponseStatus GATEWAY_TIMEOUT
        504 Gateway Timeout
      • RTSP_VERSION_NOT_SUPPORTED

        public static final HttpResponseStatus RTSP_VERSION_NOT_SUPPORTED
        505 RTSP Version not supported
      • OPTION_NOT_SUPPORTED

        public static final HttpResponseStatus OPTION_NOT_SUPPORTED
        551 Option not supported
    • Method Detail

      • valueOf

        public static HttpResponseStatus valueOf​(int code)
        Returns the HttpResponseStatus represented 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.