Interface FileItemHeadersProvider<T extends FileItemHeadersProvider<T>>
- Type Parameters:
- T- The FileItemHeadersProvider type.
- All Known Subinterfaces:
- FileItem<F>,- FileItemInput
- All Known Implementing Classes:
- DiskFileItem
public interface FileItemHeadersProvider<T extends FileItemHeadersProvider<T>>
Provides access to headers.
- See Also:
- 
Method SummaryModifier and TypeMethodDescriptionGets the collection of headers defined locally within this item.setHeaders(FileItemHeaders headers) Sets the headers read from within an item.
- 
Method Details- 
getHeadersGets the collection of headers defined locally within this item.- Returns:
- the FileItemHeaderspresent for this item.
 
- 
setHeadersSets the headers read from within an item. Implementations ofFileItemorFileItemInputshould 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.
- Returns:
- thisinstance.
 
 
-