public class ProcessingListDecorator<I,O>
extends java.lang.Object
implements org.springframework.beans.factory.FactoryBean, org.springframework.beans.factory.InitializingBean
Constructor and Description |
---|
ProcessingListDecorator(java.util.List<I> list)
Instantiates a new processing list decorator.
|
Modifier and Type | Method and Description |
---|---|
void |
afterPropertiesSet() |
java.lang.Object |
getObject() |
java.lang.Class |
getObjectType() |
org.springframework.batch.item.ItemProcessor<I,O> |
getProcessor()
Gets the processor.
|
boolean |
isSingleton() |
void |
setProcessor(org.springframework.batch.item.ItemProcessor<I,O> processor)
Sets the processor.
|
public ProcessingListDecorator(java.util.List<I> list)
list
- the listpublic java.lang.Object getObject() throws java.lang.Exception
getObject
in interface org.springframework.beans.factory.FactoryBean
java.lang.Exception
public java.lang.Class getObjectType()
getObjectType
in interface org.springframework.beans.factory.FactoryBean
public boolean isSingleton()
isSingleton
in interface org.springframework.beans.factory.FactoryBean
public void afterPropertiesSet() throws java.lang.Exception
afterPropertiesSet
in interface org.springframework.beans.factory.InitializingBean
java.lang.Exception
public org.springframework.batch.item.ItemProcessor<I,O> getProcessor()