org.springframework.batch.core.repository.support
Class MapJobRepositoryFactoryBean

java.lang.Object
  extended by org.springframework.batch.core.repository.support.AbstractJobRepositoryFactoryBean
      extended by org.springframework.batch.core.repository.support.MapJobRepositoryFactoryBean
All Implemented Interfaces:
FactoryBean, InitializingBean

public class MapJobRepositoryFactoryBean
extends AbstractJobRepositoryFactoryBean

A FactoryBean that automates the creation of a SimpleJobRepository using non-persistent in-memory DAO implementations.

Author:
Robert Kasanicky

Constructor Summary
MapJobRepositoryFactoryBean()
           
 
Method Summary
protected  JobExecutionDao createJobExecutionDao()
           
protected  JobInstanceDao createJobInstanceDao()
           
protected  StepExecutionDao createStepExecutionDao()
           
 
Methods inherited from class org.springframework.batch.core.repository.support.AbstractJobRepositoryFactoryBean
afterPropertiesSet, getObject, getObjectType, initializeProxy, isSingleton, setIsolationLevelForCreate, setTransactionManager
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

MapJobRepositoryFactoryBean

public MapJobRepositoryFactoryBean()
Method Detail

createJobExecutionDao

protected JobExecutionDao createJobExecutionDao()
                                         throws Exception
Specified by:
createJobExecutionDao in class AbstractJobRepositoryFactoryBean
Returns:
fully configured JobExecutionDao implementation.
Throws:
Exception

createJobInstanceDao

protected JobInstanceDao createJobInstanceDao()
                                       throws Exception
Specified by:
createJobInstanceDao in class AbstractJobRepositoryFactoryBean
Returns:
fully configured JobInstanceDao implementation.
Throws:
Exception

createStepExecutionDao

protected StepExecutionDao createStepExecutionDao()
                                           throws Exception
Specified by:
createStepExecutionDao in class AbstractJobRepositoryFactoryBean
Returns:
fully configured StepExecutionDao implementation.
Throws:
Exception


Copyright © 2009 SpringSource. All Rights Reserved.