Interface FileUpload
-
- All Superinterfaces:
ByteBufHolder
,java.lang.Comparable<InterfaceHttpData>
,HttpData
,InterfaceHttpData
,ReferenceCounted
- All Known Implementing Classes:
DiskFileUpload
,MemoryFileUpload
,MixedFileUpload
public interface FileUpload extends HttpData
FileUpload interface that could be in memory, on temporary file or any other implementations. Most methods are inspired from java.io.File API.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface io.netty.handler.codec.http.multipart.InterfaceHttpData
InterfaceHttpData.HttpDataType
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description FileUpload
copy()
Creates a deep copy of thisByteBufHolder
.FileUpload
duplicate()
Duplicates thisByteBufHolder
.java.lang.String
getContentTransferEncoding()
Returns the Content-Transfer-Encodingjava.lang.String
getContentType()
Returns the content type passed by the browser or null if not defined.java.lang.String
getFilename()
Returns the original filename in the client's filesystem, as provided by the browser (or other client software).FileUpload
replace(ByteBuf content)
Returns a newByteBufHolder
which contains the specifiedcontent
.FileUpload
retain()
Increases the reference count by1
.FileUpload
retain(int increment)
Increases the reference count by the specifiedincrement
.FileUpload
retainedDuplicate()
Duplicates thisByteBufHolder
.void
setContentTransferEncoding(java.lang.String contentTransferEncoding)
Set the Content-Transfer-Encoding type from String as 7bit, 8bit or binaryvoid
setContentType(java.lang.String contentType)
Set the Content Type passed by the browser if definedvoid
setFilename(java.lang.String filename)
Set the original filenameFileUpload
touch()
Records the current access location of this object for debugging purposes.FileUpload
touch(java.lang.Object hint)
Records the current access location of this object with an additional arbitrary information for debugging purposes.-
Methods inherited from interface io.netty.buffer.ByteBufHolder
content
-
Methods inherited from interface io.netty.handler.codec.http.multipart.HttpData
addContent, checkSize, definedLength, delete, get, getByteBuf, getCharset, getChunk, getFile, getMaxSize, getString, getString, isCompleted, isInMemory, length, renameTo, setCharset, setContent, setContent, setContent, setMaxSize
-
Methods inherited from interface io.netty.handler.codec.http.multipart.InterfaceHttpData
getHttpDataType, getName
-
Methods inherited from interface io.netty.util.ReferenceCounted
refCnt, release, release
-
-
-
-
Method Detail
-
getFilename
java.lang.String getFilename()
Returns the original filename in the client's filesystem, as provided by the browser (or other client software).- Returns:
- the original filename
-
setFilename
void setFilename(java.lang.String filename)
Set the original filename
-
setContentType
void setContentType(java.lang.String contentType)
Set the Content Type passed by the browser if defined- Parameters:
contentType
- Content Type to set - must be not null
-
getContentType
java.lang.String getContentType()
Returns the content type passed by the browser or null if not defined.- Returns:
- the content type passed by the browser or null if not defined.
-
setContentTransferEncoding
void setContentTransferEncoding(java.lang.String contentTransferEncoding)
Set the Content-Transfer-Encoding type from String as 7bit, 8bit or binary
-
getContentTransferEncoding
java.lang.String getContentTransferEncoding()
Returns the Content-Transfer-Encoding- Returns:
- the Content-Transfer-Encoding
-
copy
FileUpload copy()
Description copied from interface:ByteBufHolder
Creates a deep copy of thisByteBufHolder
.- Specified by:
copy
in interfaceByteBufHolder
- Specified by:
copy
in interfaceHttpData
-
duplicate
FileUpload duplicate()
Description copied from interface:ByteBufHolder
Duplicates thisByteBufHolder
. Be aware that this will not automatically callByteBufHolder.retain()
.- Specified by:
duplicate
in interfaceByteBufHolder
- Specified by:
duplicate
in interfaceHttpData
-
retainedDuplicate
FileUpload retainedDuplicate()
Description copied from interface:ByteBufHolder
Duplicates thisByteBufHolder
. This method returns a retained duplicate unlikeByteBufHolder.duplicate()
.- Specified by:
retainedDuplicate
in interfaceByteBufHolder
- Specified by:
retainedDuplicate
in interfaceHttpData
- See Also:
ByteBuf.retainedDuplicate()
-
replace
FileUpload replace(ByteBuf content)
Description copied from interface:ByteBufHolder
Returns a newByteBufHolder
which contains the specifiedcontent
.- Specified by:
replace
in interfaceByteBufHolder
- Specified by:
replace
in interfaceHttpData
-
retain
FileUpload retain()
Description copied from interface:ReferenceCounted
Increases the reference count by1
.- Specified by:
retain
in interfaceByteBufHolder
- Specified by:
retain
in interfaceHttpData
- Specified by:
retain
in interfaceInterfaceHttpData
- Specified by:
retain
in interfaceReferenceCounted
-
retain
FileUpload retain(int increment)
Description copied from interface:ReferenceCounted
Increases the reference count by the specifiedincrement
.- Specified by:
retain
in interfaceByteBufHolder
- Specified by:
retain
in interfaceHttpData
- Specified by:
retain
in interfaceInterfaceHttpData
- Specified by:
retain
in interfaceReferenceCounted
-
touch
FileUpload touch()
Description copied from interface:ReferenceCounted
Records the current access location of this object for debugging purposes. If this object is determined to be leaked, the information recorded by this operation will be provided to you viaResourceLeakDetector
. This method is a shortcut totouch(null)
.- Specified by:
touch
in interfaceByteBufHolder
- Specified by:
touch
in interfaceHttpData
- Specified by:
touch
in interfaceInterfaceHttpData
- Specified by:
touch
in interfaceReferenceCounted
-
touch
FileUpload touch(java.lang.Object hint)
Description copied from interface:ReferenceCounted
Records the current access location of this object with an additional arbitrary information for debugging purposes. If this object is determined to be leaked, the information recorded by this operation will be provided to you viaResourceLeakDetector
.- Specified by:
touch
in interfaceByteBufHolder
- Specified by:
touch
in interfaceHttpData
- Specified by:
touch
in interfaceInterfaceHttpData
- Specified by:
touch
in interfaceReferenceCounted
-
-