org.springframework.batch.item
Interface ItemProcessor<I,O>
- 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
Method Summary |
O |
process(I item)
Process the provided item, returning a potentially modified or new item for continued
processing. |
process
O process(I item)
throws Exception
- Process the provided item, returning a potentially modified or new item for continued
processing. If the returned result is null, it is assumed that processing of the item
should not continue.
- Parameters:
item
- to be processed
- Returns:
- potentially modified or new item for continued processing, null if processing of the
provided item should not continue.
- Throws:
Exception
Copyright © 2013 SpringSource. All Rights Reserved.