Class JakartaServletRequestContext
java.lang.Object
org.apache.commons.fileupload2.core.AbstractRequestContext<HttpServletRequest>
org.apache.commons.fileupload2.jakarta.servlet6.JakartaServletRequestContext
- All Implemented Interfaces:
RequestContext
Provides access to the request information needed for a request made to an HTTP servlet.
-
Constructor Summary
ConstructorDescriptionConstructs a context for this request. -
Method Summary
Modifier and TypeMethodDescriptionGets the character encoding for the request.Gets the content type of the request.Gets the input stream for the request.Methods inherited from class org.apache.commons.fileupload2.core.AbstractRequestContext
getContentLength, getRequest, toString
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
Methods inherited from interface org.apache.commons.fileupload2.core.RequestContext
getCharset
-
Constructor Details
-
JakartaServletRequestContext
Constructs a context for this request.- Parameters:
request
- The request to which this context applies.
-
-
Method Details
-
getCharacterEncoding
Gets the character encoding for the request.- Returns:
- The character encoding for the request.
-
getContentType
Gets the content type of the request.- Returns:
- The content type of the request.
-
getInputStream
Gets the input stream for the request.- Returns:
- The input stream for the request.
- Throws:
IOException
- if a problem occurs.
-