Class JakSrvltRequestContext

java.lang.Object
com.vaadin.external.apache.commons.fileupload2.jaksrvlt.JakSrvltRequestContext
All Implemented Interfaces:
RequestContext, UploadContext

public class JakSrvltRequestContext extends Object implements UploadContext

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

Since:
1.1
  • Constructor Details

    • JakSrvltRequestContext

      public JakSrvltRequestContext(jakarta.servlet.http.HttpServletRequest request)
      Construct a context for this request.
      Parameters:
      request - The request to which this context applies.
  • Method Details

    • getCharacterEncoding

      public String getCharacterEncoding()
      Retrieve the character encoding for the request.
      Specified by:
      getCharacterEncoding in interface RequestContext
      Returns:
      The character encoding for the request.
    • getContentType

      public String getContentType()
      Retrieve the content type of the request.
      Specified by:
      getContentType in interface RequestContext
      Returns:
      The content type of the request.
    • getContentLength

      @Deprecated public int getContentLength()
      Deprecated.
      1.3 Use contentLength() instead
      Retrieve the content length of the request.
      Specified by:
      getContentLength in interface RequestContext
      Returns:
      The content length of the request.
    • contentLength

      public long contentLength()
      Retrieve the content length of the request.
      Specified by:
      contentLength in interface UploadContext
      Returns:
      The content length of the request.
      Since:
      1.3
    • getInputStream

      public InputStream getInputStream() throws IOException
      Retrieve the input stream for the request.
      Specified by:
      getInputStream in interface RequestContext
      Returns:
      The input stream for the request.
      Throws:
      IOException - if a problem occurs.
    • toString

      public String toString()
      Returns a string representation of this object.
      Overrides:
      toString in class Object
      Returns:
      a string representation of this object.