Uses of Interface
org.apache.wicket.util.upload.FileItem

Packages that use FileItem
org.apache.wicket.markup.html.form.upload Support for upload forms (using multipart requests). 
org.apache.wicket.protocol.http HTTP implementation. 
org.apache.wicket.protocol.http.servlet Java Servlet specific implementation of Wicket http classes. 
org.apache.wicket.util.upload Protocol independent upload utilities. 
 

Uses of FileItem in org.apache.wicket.markup.html.form.upload
 

Constructors in org.apache.wicket.markup.html.form.upload with parameters of type FileItem
FileUpload(FileItem item)
          Constructor
 

Uses of FileItem in org.apache.wicket.protocol.http
 

Methods in org.apache.wicket.protocol.http that return FileItem
 FileItem IMultipartWebRequest.getFile(String fieldName)
          Gets the file that was uploaded using the given field name.
 

Methods in org.apache.wicket.protocol.http that return types with arguments of type FileItem
 Map<String,FileItem> IMultipartWebRequest.getFiles()
           
 

Uses of FileItem in org.apache.wicket.protocol.http.servlet
 

Methods in org.apache.wicket.protocol.http.servlet that return FileItem
 FileItem MultipartServletWebRequest.getFile(String fieldName)
          Gets the file that was uploaded using the given field name.
 

Methods in org.apache.wicket.protocol.http.servlet that return types with arguments of type FileItem
 Map<String,FileItem> MultipartServletWebRequest.getFiles()
           
 

Uses of FileItem in org.apache.wicket.util.upload
 

Classes in org.apache.wicket.util.upload that implement FileItem
 class DiskFileItem
           The default implementation of the FileItem interface.
 

Methods in org.apache.wicket.util.upload that return FileItem
protected  FileItem FileUploadBase.createItem(Map<String,String> headers, boolean isFormField)
          Deprecated. This method is no longer used in favour of internally created instances of FileItem.
 FileItem FileItemFactory.createItem(String fieldName, String contentType, boolean isFormField, String fileName)
          Create a new FileItem instance from the supplied parameters and any local factory configuration.
 FileItem DiskFileItemFactory.createItem(String fieldName, String contentType, boolean isFormField, String fileName)
          Create a new DiskFileItem instance from the supplied parameters and the local factory configuration.
 

Methods in org.apache.wicket.util.upload that return types with arguments of type FileItem
 List<FileItem> ServletFileUpload.parseRequest(javax.servlet.http.HttpServletRequest request)
          Processes an RFC 1867 compliant multipart/form-data stream.
 List<FileItem> FileUploadBase.parseRequest(javax.servlet.http.HttpServletRequest req)
          Deprecated. Use the method in ServletFileUpload instead.
 List<FileItem> FileUploadBase.parseRequest(RequestContext ctx)
          Processes an RFC 1867 compliant multipart/form-data stream.
 



Copyright © 2004-2011 Apache Software Foundation. All Rights Reserved.