- All Known Implementing Classes:
- CompositeItemProcessor, ItemProcessorAdapter, PassThroughItemProcessor, ValidatingItemProcessor
public interface ItemProcessor<I,O>
Interface for item transformation. Given an item as input, this interface provides
an extension point which allows for the application of business logic in an item
oriented processing scenario. It should be noted that while it's possible to return
a different type than the one provided, it's not strictly necessary. Furthermore,
returning null indicates that the item should not be continued to be processed.
- Author:
- Robert Kasanicky, Dave Syer