wicket.util.upload
Class ServletRequestContext

java.lang.Object
  extended by wicket.util.upload.ServletRequestContext
All Implemented Interfaces:
RequestContext

public class ServletRequestContext
extends java.lang.Object
implements RequestContext

Provides access to the request information needed for a request made to an HTTP servlet.

Author:
Martin Cooper

Constructor Summary
ServletRequestContext(javax.servlet.http.HttpServletRequest request)
          Construct a context for this request.
 
Method Summary
 int getContentLength()
          Retrieve the content length of the request.
 java.lang.String getContentType()
          Retrieve the content type of the request.
 java.io.InputStream getInputStream()
          Retrieve the input stream for the request.
 java.lang.String toString()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

ServletRequestContext

public ServletRequestContext(javax.servlet.http.HttpServletRequest request)
Construct a context for this request.

Parameters:
request - The request to which this context applies.
Method Detail

getContentType

public java.lang.String getContentType()
Retrieve the content type of the request.

Specified by:
getContentType in interface RequestContext
Returns:
The content type of the request.

getContentLength

public int getContentLength()
Retrieve the content length of the request.

Specified by:
getContentLength in interface RequestContext
Returns:
The content length of the request.

getInputStream

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

Specified by:
getInputStream in interface RequestContext
Returns:
The input stream for the request.
Throws:
java.io.IOException - if a problem occurs.

toString

public java.lang.String toString()
Overrides:
toString in class java.lang.Object
See Also:
Object.toString()


Copyright © 2004-2007 Wicket developers. All Rights Reserved.