Class RtspMethods
java.lang.Object
org.jboss.netty.handler.codec.rtsp.RtspMethods
The request method of RTSP.
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final HttpMethod
The ANNOUNCE posts the description of a presentation or media object identified by the request URL to a server, or updates the client-side session description in real-time.static final HttpMethod
The DESCRIBE method retrieves the description of a presentation or media object identified by the request URL from a server.static final HttpMethod
The GET_PARAMETER request retrieves the value of a parameter of a presentation or stream specified in the URI.private static final Map<String,
HttpMethod> static final HttpMethod
The OPTIONS method represents a request for information about the communication options available on the request/response chain identified by the Request-URI.static final HttpMethod
The PAUSE request causes the stream delivery to be interrupted (halted) temporarily.static final HttpMethod
The PLAY method tells the server to start sending data via the mechanism specified in SETUP.static final HttpMethod
The RECORD method initiates recording a range of media data according to the presentation description.static final HttpMethod
The REDIRECT request informs the client that it must connect to another server location.static final HttpMethod
The SET_PARAMETER requests to set the value of a parameter for a presentation or stream specified by the URI.static final HttpMethod
The SETUP request for a URI specifies the transport mechanism to be used for the streamed media.static final HttpMethod
The TEARDOWN request stops the stream delivery for the given URI, freeing the resources associated with it. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic HttpMethod
Returns theHttpMethod
represented by the specified name.
-
Field Details
-
OPTIONS
The OPTIONS method represents a request for information about the communication options available on the request/response chain identified by the Request-URI. This method allows the client to determine the options and/or requirements associated with a resource, or the capabilities of a server, without implying a resource action or initiating a resource retrieval. -
DESCRIBE
The DESCRIBE method retrieves the description of a presentation or media object identified by the request URL from a server. -
ANNOUNCE
The ANNOUNCE posts the description of a presentation or media object identified by the request URL to a server, or updates the client-side session description in real-time. -
SETUP
The SETUP request for a URI specifies the transport mechanism to be used for the streamed media. -
PLAY
The PLAY method tells the server to start sending data via the mechanism specified in SETUP. -
PAUSE
The PAUSE request causes the stream delivery to be interrupted (halted) temporarily. -
TEARDOWN
The TEARDOWN request stops the stream delivery for the given URI, freeing the resources associated with it. -
GET_PARAMETER
The GET_PARAMETER request retrieves the value of a parameter of a presentation or stream specified in the URI. -
SET_PARAMETER
The SET_PARAMETER requests to set the value of a parameter for a presentation or stream specified by the URI. -
REDIRECT
The REDIRECT request informs the client that it must connect to another server location. -
RECORD
The RECORD method initiates recording a range of media data according to the presentation description. -
methodMap
-
-
Constructor Details
-
RtspMethods
private RtspMethods()
-
-
Method Details
-
valueOf
Returns theHttpMethod
represented by the specified name. If the specified name is a standard RTSP method name, a cached instance will be returned. Otherwise, a new instance will be returned.
-