Package org.apache.wicket.util.upload

Protocol independent upload utilities.

See:
          Description

Interface Summary
Closeable Interface of an object, which may be closed.
FileItem This class represents a file or form item that was received within a multipart/form-data POST request.
FileItemFactory A factory interface for creating FileItem instances.
FileItemHeaders This class provides support for accessing the headers for a file or form item that was received within a multipart/form-data POST request.
FileItemHeadersSupport Interface that will indicate that FileItem or FileItemStream implementations will accept the headers read for the item.
FileItemIterator An iterator, as returned by FileUploadBase.getItemIterator(RequestContext).
FileItemStream This interface provides access to a file or form item that was received within a multipart/form-data POST request.
ProgressListener The ProgressListener may be used to display a progress bar or do stuff like that.
RequestContext Abstracts access to the request information needed for file uploads.
 

Class Summary
DiskFileItem The default implementation of the FileItem interface.
DiskFileItemFactory The default FileItemFactory implementation.
FileItemHeadersImpl Default implementation of the FileItemHeaders interface.
FileUpload High level API for processing file uploads.
FileUploadBase High level API for processing file uploads.
LimitedInputStream An input stream, which limits its data size.
MultipartFormInputStream Low level API for processing file uploads.
ParameterParser A simple parser intended to parse sequences of name/value pairs.
ServletFileUpload High level API for processing file uploads.
ServletRequestContext Provides access to the request information needed for a request made to an HTTP servlet.
 

Exception Summary
FileItemStream.ItemSkippedException This exception is thrown, if an attempt is made to read data from the InputStream, which has been returned by FileItemStream.openStream(), after Iterator.hasNext() has been invoked on the iterator, which created the FileItemStream.
FileUploadBase.FileSizeLimitExceededException Thrown to indicate that A files size exceeds the configured maximum.
FileUploadBase.FileUploadIOException This exception is thrown for hiding an inner FileUploadException in an IOException.
FileUploadBase.InvalidContentTypeException Thrown to indicate that the request is not a multipart request.
FileUploadBase.IOFileUploadException Thrown to indicate an IOException.
FileUploadBase.SizeException This exception is thrown, if a requests permitted size is exceeded.
FileUploadBase.SizeLimitExceededException Thrown to indicate that the request size exceeds the configured maximum.
FileUploadException Exception for errors encountered while processing the request.
MultipartFormInputStream.IllegalBoundaryException Thrown upon attempt of setting an invalid boundary token.
MultipartFormInputStream.MalformedStreamException Thrown to indicate that the input stream fails to follow the required syntax.
 

Package org.apache.wicket.util.upload Description

Protocol independent upload utilities. Copied from the Apache Jakarta Commons FileUpload project (1.1-dev, HEAD at 21st of august 2005).



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