Class JakSrvltRequestContext
java.lang.Object
com.vaadin.external.apache.commons.fileupload2.jaksrvlt.JakSrvltRequestContext
- All Implemented Interfaces:
RequestContext,UploadContext
Provides access to the request information needed for a request made to an HTTP servlet.
- Since:
- 1.1
-
Constructor Summary
ConstructorsConstructorDescriptionJakSrvltRequestContext(jakarta.servlet.http.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.intDeprecated.Retrieve the content type of the request.Retrieve the input stream for the request.toString()Returns a string representation of this object.
-
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
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.
-
getContentLength
Deprecated.1.3 UsecontentLength()insteadRetrieve the content length of the request.- Specified by:
getContentLengthin interfaceRequestContext- Returns:
- The content length of the request.
-
contentLength
public long contentLength()Retrieve the content length of the request.- Specified by:
contentLengthin interfaceUploadContext- Returns:
- The content length of the request.
- Since:
- 1.3
-
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
Returns a string representation of this object.
-
contentLength()instead