Class JobParserJobFactoryBean
java.lang.Object
org.springframework.batch.core.configuration.xml.JobParserJobFactoryBean
- All Implemented Interfaces:
org.springframework.beans.factory.FactoryBean<FlowJob>,org.springframework.beans.factory.SmartFactoryBean<FlowJob>
public class JobParserJobFactoryBean
extends Object
implements org.springframework.beans.factory.SmartFactoryBean<FlowJob>
This
FactoryBean is used by the batch namespace parser to create
FlowJob objects. It stores all of the properties that are configurable on the
<job/>.- Since:
- 2.0.1
- Author:
- Dan Garrette, Dave Syer
-
Field Summary
Fields inherited from interface org.springframework.beans.factory.FactoryBean
OBJECT_TYPE_ATTRIBUTE -
Constructor Summary
ConstructorsConstructorDescriptionConstructor for the factory bean that initializes the name. -
Method Summary
Modifier and TypeMethodDescriptionfinal FlowJobbooleanbooleanbooleanvoidSet the flow for the factory bean.voidsetJobExecutionListeners(JobExecutionListener[] jobExecutionListeners) voidsetJobParametersIncrementer(JobParametersIncrementer jobParametersIncrementer) Set theJobParametersIncrementerfor the factory bean.voidsetJobParametersValidator(JobParametersValidator jobParametersValidator) Set theJobParametersValidatorfor the factory bean.voidsetJobRepository(JobRepository jobRepository) Set theJobRepositoryfor the factory bean.voidsetRestartable(Boolean restartable) Set the restartable flag for the factory bean.
-
Constructor Details
-
JobParserJobFactoryBean
Constructor for the factory bean that initializes the name.- Parameters:
name- The name to be used by the factory bean.
-
-
Method Details
-
getObject
-
setRestartable
Set the restartable flag for the factory bean.- Parameters:
restartable- The restartable flag to be used by the factory bean.
-
setJobRepository
Set theJobRepositoryfor the factory bean.- Parameters:
jobRepository- TheJobRepositoryto be used by the factory bean.
-
setJobParametersValidator
Set theJobParametersValidatorfor the factory bean.- Parameters:
jobParametersValidator- TheJobParametersValidatorto be used by the factory bean.
-
getJobRepository
- Returns:
- The
JobRepositoryused by the factory bean.
-
setJobExecutionListeners
-
setJobParametersIncrementer
Set theJobParametersIncrementerfor the factory bean.- Parameters:
jobParametersIncrementer- TheJobParametersIncrementerto be used by the factory bean.
-
setFlow
Set the flow for the factory bean.- Parameters:
flow- TheFlowto be used by the factory bean.
-
getObjectType
- Specified by:
getObjectTypein interfaceorg.springframework.beans.factory.FactoryBean<FlowJob>
-
isSingleton
public boolean isSingleton()- Specified by:
isSingletonin interfaceorg.springframework.beans.factory.FactoryBean<FlowJob>
-
isEagerInit
public boolean isEagerInit()- Specified by:
isEagerInitin interfaceorg.springframework.beans.factory.SmartFactoryBean<FlowJob>
-
isPrototype
public boolean isPrototype()- Specified by:
isPrototypein interfaceorg.springframework.beans.factory.SmartFactoryBean<FlowJob>
-