public class

RequestContent

extends Object
implements HttpRequestInterceptor
java.lang.Object
   ↳ org.apache.http.protocol.RequestContent

Class Overview

RequestContent is the most important interceptor for outgoing requests. It is responsible for delimiting content length by adding Content-Length or Transfer-Content headers based on the properties of the enclosed entity and the protocol version. This interceptor is required for correct functioning of client side protocol processors.

Summary

Public Constructors
RequestContent()
Public Methods
void process(HttpRequest request, HttpContext context)
Processes a request.
[Expand]
Inherited Methods
From class java.lang.Object
From interface org.apache.http.HttpRequestInterceptor

Public Constructors

public RequestContent ()

Public Methods

public void process (HttpRequest request, HttpContext context)

Processes a request. On the client side, this step is performed before the request is sent to the server. On the server side, this step is performed on incoming messages before the message body is evaluated.

Parameters
request the request to preprocess
context the context for the request