org.apache.tomcat.util.http.fileupload.FileItemFactory Java Examples
The following examples show how to use
org.apache.tomcat.util.http.fileupload.FileItemFactory.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: ServletFileUpload.java From Tomcat8-Source-Read with MIT License | 2 votes |
/** * Constructs an instance of this class which uses the supplied factory to * create <code>FileItem</code> instances. * * @see FileUpload#FileUpload() * @param fileItemFactory The factory to use for creating file items. */ public ServletFileUpload(FileItemFactory fileItemFactory) { super(fileItemFactory); }
Example #2
Source File: ServletFileUpload.java From Tomcat7.0.67 with Apache License 2.0 | 2 votes |
/** * Constructs an instance of this class which uses the supplied factory to * create <code>FileItem</code> instances. * * @see FileUpload#FileUpload() * @param fileItemFactory The factory to use for creating file items. */ public ServletFileUpload(FileItemFactory fileItemFactory) { super(fileItemFactory); }
Example #3
Source File: ServletFileUpload.java From tomcatsrc with Apache License 2.0 | 2 votes |
/** * Constructs an instance of this class which uses the supplied factory to * create <code>FileItem</code> instances. * * @see FileUpload#FileUpload() * @param fileItemFactory The factory to use for creating file items. */ public ServletFileUpload(FileItemFactory fileItemFactory) { super(fileItemFactory); }