|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use ItemProcessor | |
|---|---|
| org.springframework.batch.core.step.item | Specific implementations of step concerns for item-oriented approach. |
| org.springframework.batch.item.adapter | Adapters for Plain Old Java Objects. |
| org.springframework.batch.item.support | Internal support package |
| org.springframework.batch.item.validator | Infrastructure implementations of item validator concerns. |
| org.springframework.batch.sample.common | |
| org.springframework.batch.sample.domain.trade | |
| org.springframework.batch.sample.domain.trade.internal | |
| Uses of ItemProcessor in org.springframework.batch.core.step.item |
|---|
| Methods in org.springframework.batch.core.step.item that return ItemProcessor | |
|---|---|
protected ItemProcessor<? super T,? extends S> |
SimpleStepFactoryBean.getItemProcessor()
Protected getter for the ItemProcessor for subclasses to use |
| Methods in org.springframework.batch.core.step.item with parameters of type ItemProcessor | |
|---|---|
void |
SimpleChunkProcessor.setItemProcessor(ItemProcessor<? super I,? extends O> itemProcessor)
|
void |
SimpleStepFactoryBean.setItemProcessor(ItemProcessor<? super T,? extends S> itemProcessor)
|
| Constructors in org.springframework.batch.core.step.item with parameters of type ItemProcessor | |
|---|---|
FaultTolerantChunkProcessor(ItemProcessor<? super I,? extends O> itemProcessor,
ItemWriter<? super O> itemWriter,
BatchRetryTemplate batchRetryTemplate)
|
|
SimpleChunkProcessor(ItemProcessor<? super I,? extends O> itemProcessor,
ItemWriter<? super O> itemWriter)
|
|
| Uses of ItemProcessor in org.springframework.batch.item.adapter |
|---|
| Classes in org.springframework.batch.item.adapter that implement ItemProcessor | |
|---|---|
class |
ItemProcessorAdapter<I,O>
Invokes a custom method on a delegate plain old Java object which itself processes an item. |
| Uses of ItemProcessor in org.springframework.batch.item.support |
|---|
| Classes in org.springframework.batch.item.support that implement ItemProcessor | |
|---|---|
class |
CompositeItemProcessor<I,O>
Composite ItemProcessor that passes the item through a sequence of
injected ItemTransformers (return value of previous
transformation is the entry value of the next). |
class |
PassThroughItemProcessor<T>
Simple ItemProcessor that does nothing - simply passes its argument
through to the caller. |
| Method parameters in org.springframework.batch.item.support with type arguments of type ItemProcessor | |
|---|---|
void |
CompositeItemProcessor.setItemProcessors(List<ItemProcessor> itemProcessors)
|
| Uses of ItemProcessor in org.springframework.batch.item.validator |
|---|
| Classes in org.springframework.batch.item.validator that implement ItemProcessor | |
|---|---|
class |
ValidatingItemProcessor<T>
Simple implementation of ItemProcessor that validates input and
returns it without modifications. |
| Uses of ItemProcessor in org.springframework.batch.sample.common |
|---|
| Classes in org.springframework.batch.sample.common that implement ItemProcessor | |
|---|---|
class |
StagingItemProcessor<T>
Marks the input row as 'processed'. |
| Uses of ItemProcessor in org.springframework.batch.sample.domain.trade |
|---|
| Classes in org.springframework.batch.sample.domain.trade that implement ItemProcessor | |
|---|---|
class |
CustomerUpdateProcessor
|
| Uses of ItemProcessor in org.springframework.batch.sample.domain.trade.internal |
|---|
| Classes in org.springframework.batch.sample.domain.trade.internal that implement ItemProcessor | |
|---|---|
class |
CustomerCreditIncreaseProcessor
Increases customer's credit by a fixed amount. |
class |
TradeProcessor
Processes the Trade - throwing validation errors if necessary. |
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||