Uses of Interface
org.apache.commons.fileupload.FileItemFactory

Packages that use FileItemFactory
org.apache.commons.fileupload A component for handling HTML file uploads as specified by RFC 1867
org.apache.commons.fileupload.disk A disk-based implementation of the FileItem interface. 
org.apache.commons.fileupload.portlet An implementation of FileUpload for use in portlets conforming to JSR 168. 
org.apache.commons.fileupload.servlet An implementation of FileUpload for use in servlets conforming to JSR 53. 
 

Uses of FileItemFactory in org.apache.commons.fileupload
 

Classes in org.apache.commons.fileupload that implement FileItemFactory
 class DefaultFileItemFactory
          Deprecated. Use DiskFileItemFactory instead.
 

Methods in org.apache.commons.fileupload that return FileItemFactory
abstract  FileItemFactory FileUploadBase.getFileItemFactory()
          Returns the factory class used when creating file items.
 FileItemFactory FileUpload.getFileItemFactory()
          Returns the factory class used when creating file items.
 FileItemFactory DiskFileUpload.getFileItemFactory()
          Deprecated. Use FileUpload instead.
 

Methods in org.apache.commons.fileupload with parameters of type FileItemFactory
abstract  void FileUploadBase.setFileItemFactory(FileItemFactory factory)
          Sets the factory class to use when creating file items.
 void FileUpload.setFileItemFactory(FileItemFactory factory)
          Sets the factory class to use when creating file items.
 void DiskFileUpload.setFileItemFactory(FileItemFactory factory)
          Deprecated. Use FileUpload instead.
 

Constructors in org.apache.commons.fileupload with parameters of type FileItemFactory
FileUpload(FileItemFactory fileItemFactory)
          Constructs an instance of this class which uses the supplied factory to create FileItem instances.
 

Uses of FileItemFactory in org.apache.commons.fileupload.disk
 

Classes in org.apache.commons.fileupload.disk that implement FileItemFactory
 class DiskFileItemFactory
          The default FileItemFactory implementation.
 

Uses of FileItemFactory in org.apache.commons.fileupload.portlet
 

Constructors in org.apache.commons.fileupload.portlet with parameters of type FileItemFactory
PortletFileUpload(FileItemFactory fileItemFactory)
          Constructs an instance of this class which uses the supplied factory to create FileItem instances.
 

Uses of FileItemFactory in org.apache.commons.fileupload.servlet
 

Constructors in org.apache.commons.fileupload.servlet with parameters of type FileItemFactory
ServletFileUpload(FileItemFactory fileItemFactory)
          Constructs an instance of this class which uses the supplied factory to create FileItem instances.
 



Copyright © 2002-2010 The Apache Software Foundation. All Rights Reserved.