Class ServletRequestContext
java.lang.Object
org.apache.tomcat.util.http.fileupload.servlet.ServletRequestContext
- All Implemented Interfaces:
 RequestContext, UploadContext
Provides access to the request information needed for a request made to an HTTP servlet.
- Since:
 - FileUpload 1.1
 
- 
Constructor Summary
ConstructorsConstructorDescriptionServletRequestContext(HttpServletRequest request) Construct a context for this request. - 
Method Summary
Modifier and TypeMethodDescriptionlongRetrieve the content length of the request.Retrieve the character encoding for the request.Retrieve the content type of the request.Retrieve the input stream for the request.toString()Returns a string representation of this object. 
- 
Constructor Details
- 
ServletRequestContext
Construct a context for this request.- Parameters:
 request- The request to which this context applies.
 
 - 
 - 
Method Details
- 
contentLength
public long contentLength()Retrieve the content length of the request.- Specified by:
 contentLengthin interfaceUploadContext- Returns:
 - The content length of the request.
 - Since:
 - FileUpload 1.3
 
 - 
getCharacterEncoding
Retrieve the character encoding for the request.- Specified by:
 getCharacterEncodingin interfaceRequestContext- Returns:
 - The character encoding for the request.
 
 - 
getContentType
Retrieve the content type of the request.- Specified by:
 getContentTypein interfaceRequestContext- Returns:
 - The content type of the request.
 
 - 
getInputStream
Retrieve the input stream for the request.- Specified by:
 getInputStreamin interfaceRequestContext- Returns:
 - The input stream for the request.
 - Throws:
 IOException- if a problem occurs.
 - 
toString
 
 -