Package javax.servlet
Class MultipartConfigElement
- java.lang.Object
-
- javax.servlet.MultipartConfigElement
-
public class MultipartConfigElement extends Object
- Since:
- Servlet 3.0 TODO SERVLET3 - Add comments
-
-
Constructor Summary
Constructors Constructor Description MultipartConfigElement(String location)
MultipartConfigElement(String location, long maxFileSize, long maxRequestSize, int fileSizeThreshold)
MultipartConfigElement(MultipartConfig annotation)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getFileSizeThreshold()
String
getLocation()
long
getMaxFileSize()
long
getMaxRequestSize()
-
-
-
Constructor Detail
-
MultipartConfigElement
public MultipartConfigElement(String location)
-
MultipartConfigElement
public MultipartConfigElement(String location, long maxFileSize, long maxRequestSize, int fileSizeThreshold)
-
MultipartConfigElement
public MultipartConfigElement(MultipartConfig annotation)
-
-
Method Detail
-
getLocation
public String getLocation()
-
getMaxFileSize
public long getMaxFileSize()
-
getMaxRequestSize
public long getMaxRequestSize()
-
getFileSizeThreshold
public int getFileSizeThreshold()
-
-