Class AbstractRequestContext<T>
- java.lang.Object
-
- org.apache.commons.fileupload2.core.AbstractRequestContext<T>
-
- All Implemented Interfaces:
RequestContext
public abstract class AbstractRequestContext<T> extends Object implements RequestContext
-
-
Constructor Summary
Constructors Modifier Constructor Description protectedAbstractRequestContext(Function<String,String> contentLengthString, LongSupplier contentLengthDefault, T request)Constructs a new instance.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description longgetContentLength()Gets the content length of the request.TgetRequest()StringtoString()Returns a string representation of this object.-
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
getCharacterEncoding, getCharset, getContentType, getInputStream
-
-
-
-
Constructor Detail
-
AbstractRequestContext
protected AbstractRequestContext(Function<String,String> contentLengthString, LongSupplier contentLengthDefault, T request)
Constructs a new instance.- Parameters:
contentLengthString- How to get the content length string.contentLengthDefault- How to get the content length default.request- TODO
-
-
Method Detail
-
getContentLength
public long getContentLength()
Gets the content length of the request.- Specified by:
getContentLengthin interfaceRequestContext- Returns:
- The content length of the request.
-
getRequest
public T getRequest()
-
-