org.apache.tomcat.util.http.fileupload
Interface FileItemHeadersSupport

All Known Subinterfaces:
FileItemStream
All Known Implementing Classes:
DiskFileItem

public interface FileItemHeadersSupport

Interface that will indicate that FileItem or FileItemStream implementations will accept the headers read for the item.

Since:
1.3
Author:
Michael C. Macaluso
See Also:
FileItem, FileItemStream

Method Summary
 FileItemHeaders getHeaders()
          Returns the collection of headers defined locally within this item.
 void setHeaders(FileItemHeaders headers)
          Sets the headers read from within an item.
 

Method Detail

getHeaders

FileItemHeaders getHeaders()
Returns the collection of headers defined locally within this item.

Returns:
the FileItemHeaders present for this item.

setHeaders

void setHeaders(FileItemHeaders headers)
Sets the headers read from within an item. Implementations of FileItem or FileItemStream should implement this interface to be able to get the raw headers found within the item header block.

Parameters:
headers - the instance that holds onto the headers for this instance.


Copyright © 2000-2009 Apache Software Foundation. All Rights Reserved.