public abstract class AbstractJobExplorerFactoryBean extends Object implements org.springframework.beans.factory.FactoryBean<JobExplorer>
FactoryBean
that automates the creation of a
SimpleJobExplorer
. Declares abstract methods for providing DAO
object implementations.JobExplorerFactoryBean
,
MapJobExplorerFactoryBean
Constructor and Description |
---|
AbstractJobExplorerFactoryBean() |
Modifier and Type | Method and Description |
---|---|
protected abstract ExecutionContextDao |
createExecutionContextDao() |
protected abstract JobExecutionDao |
createJobExecutionDao() |
protected abstract JobInstanceDao |
createJobInstanceDao() |
protected abstract StepExecutionDao |
createStepExecutionDao() |
Class<JobExplorer> |
getObjectType()
The type of object to be returned from
FactoryBean.getObject() . |
boolean |
isSingleton() |
protected abstract JobInstanceDao createJobInstanceDao() throws Exception
JobInstanceDao
implementation.Exception
protected abstract JobExecutionDao createJobExecutionDao() throws Exception
JobExecutionDao
implementation.Exception
protected abstract StepExecutionDao createStepExecutionDao() throws Exception
Exception
protected abstract ExecutionContextDao createExecutionContextDao() throws Exception
Exception
public Class<JobExplorer> getObjectType()
FactoryBean.getObject()
.getObjectType
in interface org.springframework.beans.factory.FactoryBean<JobExplorer>
FactoryBean.getObjectType()
public boolean isSingleton()
isSingleton
in interface org.springframework.beans.factory.FactoryBean<JobExplorer>
Copyright © 2014 Pivotal. All rights reserved.