Interface MultipartConfig
-
- All Known Implementing Classes:
MultipartConfigDescriptor
public interface MultipartConfigObjects exhibiting this interface represent a multipart-config for a servlet.- Author:
- Shing Wai Chan
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IntegergetFileSizeThreshold()StringgetLocation()LonggetMaxFileSize()LonggetMaxRequestSize()voidsetFileSizeThreshold(Integer fileSizeThreshold)voidsetLocation(String location)voidsetMaxFileSize(Long maxFileSize)voidsetMaxRequestSize(Long maxRequestSize)
-
-
-
Method Detail
-
getLocation
String getLocation()
-
setLocation
void setLocation(String location)
-
getMaxFileSize
Long getMaxFileSize()
-
setMaxFileSize
void setMaxFileSize(Long maxFileSize)
-
getMaxRequestSize
Long getMaxRequestSize()
-
setMaxRequestSize
void setMaxRequestSize(Long maxRequestSize)
-
getFileSizeThreshold
Integer getFileSizeThreshold()
-
setFileSizeThreshold
void setFileSizeThreshold(Integer fileSizeThreshold)
-
-