Uses of Class
org.jboss.netty.handler.codec.http.HttpMethod
Packages that use HttpMethod
Package
Description
Encoder, decoder and their related message types for HTTP.
An RTSP
extension based on the HTTP codec.
Encoder, decoder, session handler and their related message types for the SPDY protocol.
-
Uses of HttpMethod in org.jboss.netty.handler.codec.http
Fields in org.jboss.netty.handler.codec.http declared as HttpMethodModifier and TypeFieldDescriptionstatic final HttpMethod
HttpMethod.CONNECT
This specification reserves the method name CONNECT for use with a proxy that can dynamically switch to being a tunnelstatic final HttpMethod
HttpMethod.DELETE
The DELETE method requests that the origin server delete the resource identified by the Request-URI.static final HttpMethod
HttpMethod.GET
The GET method means retrieve whatever information (in the form of an entity) is identified by the Request-URI.static final HttpMethod
HttpMethod.HEAD
The HEAD method is identical to GET except that the server MUST NOT return a message-body in the response.private HttpMethod
DefaultHttpRequest.method
static final HttpMethod
HttpMethod.OPTIONS
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
HttpMethod.PATCH
The PATCH method requests that a set of changes described in the request entity be applied to the resource identified by the Request-URI.static final HttpMethod
HttpMethod.POST
The POST method is used to request that the origin server accept the entity enclosed in the request as a new subordinate of the resource identified by the Request-URI in the Request-Line.static final HttpMethod
HttpMethod.PUT
The PUT method requests that the enclosed entity be stored under the supplied Request-URI.static final HttpMethod
HttpMethod.TRACE
The TRACE method is used to invoke a remote, application-layer loop- back of the request message.Fields in org.jboss.netty.handler.codec.http with type parameters of type HttpMethodModifier and TypeFieldDescriptionprivate static final Map
<String, HttpMethod> HttpMethod.methodMap
(package private) final Queue
<HttpMethod> HttpClientCodec.queue
A queue that is used for correlating a request and a response.Methods in org.jboss.netty.handler.codec.http that return HttpMethodModifier and TypeMethodDescriptionDefaultHttpRequest.getMethod()
HttpRequest.getMethod()
Returns the method of this request.static HttpMethod
Returns theHttpMethod
represented by the specified name.Methods in org.jboss.netty.handler.codec.http with parameters of type HttpMethodModifier and TypeMethodDescriptionint
HttpMethod.compareTo
(HttpMethod o) void
DefaultHttpRequest.setMethod
(HttpMethod method) void
HttpRequest.setMethod
(HttpMethod method) Sets the method of this request.Constructors in org.jboss.netty.handler.codec.http with parameters of type HttpMethodModifierConstructorDescriptionDefaultHttpRequest
(HttpVersion httpVersion, HttpMethod method, String uri) Creates a new instance. -
Uses of HttpMethod in org.jboss.netty.handler.codec.rtsp
Fields in org.jboss.netty.handler.codec.rtsp declared as HttpMethodModifier and TypeFieldDescriptionstatic final HttpMethod
RtspMethods.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.static final HttpMethod
RtspMethods.DESCRIBE
The DESCRIBE method retrieves the description of a presentation or media object identified by the request URL from a server.static final HttpMethod
RtspMethods.GET_PARAMETER
The GET_PARAMETER request retrieves the value of a parameter of a presentation or stream specified in the URI.static final HttpMethod
RtspMethods.OPTIONS
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
RtspMethods.PAUSE
The PAUSE request causes the stream delivery to be interrupted (halted) temporarily.static final HttpMethod
RtspMethods.PLAY
The PLAY method tells the server to start sending data via the mechanism specified in SETUP.static final HttpMethod
RtspMethods.RECORD
The RECORD method initiates recording a range of media data according to the presentation description.static final HttpMethod
RtspMethods.REDIRECT
The REDIRECT request informs the client that it must connect to another server location.static final HttpMethod
RtspMethods.SET_PARAMETER
The SET_PARAMETER requests to set the value of a parameter for a presentation or stream specified by the URI.static final HttpMethod
RtspMethods.SETUP
The SETUP request for a URI specifies the transport mechanism to be used for the streamed media.static final HttpMethod
RtspMethods.TEARDOWN
The TEARDOWN request stops the stream delivery for the given URI, freeing the resources associated with it.Fields in org.jboss.netty.handler.codec.rtsp with type parameters of type HttpMethodModifier and TypeFieldDescriptionprivate static final Map
<String, HttpMethod> RtspMethods.methodMap
Methods in org.jboss.netty.handler.codec.rtsp that return HttpMethodModifier and TypeMethodDescriptionstatic HttpMethod
Returns theHttpMethod
represented by the specified name. -
Uses of HttpMethod in org.jboss.netty.handler.codec.spdy
Methods in org.jboss.netty.handler.codec.spdy that return HttpMethodModifier and TypeMethodDescriptionstatic HttpMethod
SpdyHeaders.getMethod
(int spdyVersion, SpdyHeadersFrame frame) Returns theHttpMethod
represented by the HTTP method header.Methods in org.jboss.netty.handler.codec.spdy with parameters of type HttpMethodModifier and TypeMethodDescriptionstatic void
SpdyHeaders.setMethod
(int spdyVersion, SpdyHeadersFrame frame, HttpMethod method) Sets the HTTP method header.