org.apache.commons.fileupload
Interface RequestContext

All Known Subinterfaces:
UploadContext
All Known Implementing Classes:
PortletRequestContext, ServletRequestContext

public interface RequestContext

Abstracts access to the request information needed for file uploads. This interface should be implemented for each type of request that may be handled by FileUpload, such as servlets and portlets.

Since:
FileUpload 1.1
Version:
$Id: RequestContext.java 1455861 2013-03-13 10:12:09Z simonetripodi $

Method Summary
 String getCharacterEncoding()
          Retrieve the character encoding for the request.
 int getContentLength()
          Deprecated. 1.3 Use UploadContext.contentLength() instead
 String getContentType()
          Retrieve the content type of the request.
 InputStream getInputStream()
          Retrieve the input stream for the request.
 

Method Detail

getCharacterEncoding

String getCharacterEncoding()
Retrieve the character encoding for the request.

Returns:
The character encoding for the request.

getContentType

String getContentType()
Retrieve the content type of the request.

Returns:
The content type of the request.

getContentLength

@Deprecated
int getContentLength()
Deprecated. 1.3 Use UploadContext.contentLength() instead

Retrieve the content length of the request.

Returns:
The content length of the request.

getInputStream

InputStream getInputStream()
                           throws IOException
Retrieve the input stream for the request.

Returns:
The input stream for the request.
Throws:
IOException - if a problem occurs.


Copyright © 2002-2013 The Apache Software Foundation. All Rights Reserved.