From 82719ce49c5dbb09dfa4398f3aaf420921a6f8a9 Mon Sep 17 00:00:00 2001 From: dsyer Date: Mon, 7 Apr 2008 07:29:55 +0000 Subject: [PATCH] RESOLVED - issue BATCH-562: org.springframework.batch.execution package still referenced in documentation --- docs/src/site/docbook/reference/execution.xml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/docs/src/site/docbook/reference/execution.xml b/docs/src/site/docbook/reference/execution.xml index 77256ece3..b2eee87ff 100644 --- a/docs/src/site/docbook/reference/execution.xml +++ b/docs/src/site/docbook/reference/execution.xml @@ -295,7 +295,7 @@ in order to obtain an execution: <bean id="jobLauncher" - class="org.springframework.batch.execution.launch.SimpleJobLauncher"> + class="org.springframework.batch.core.launch.support.SimpleJobLauncher"> <property name="jobRepository" ref="jobRepository" /> </bean> @@ -341,7 +341,7 @@ TaskExecutor: <bean id="jobLauncher" - class="org.springframework.batch.execution.launch.SimpleJobLauncher"> + class="org.springframework.batch.core.launch.support.SimpleJobLauncher"> <property name="jobRepository" ref="jobRepository" /> <property name="taskExecutor"> <bean class="org.springframework.core.task.SimpleAsyncTaskExecutor" /> @@ -444,7 +444,7 @@ convenience: JobRepositoryFactoryBean. <bean id="jobRepository" - class="org.springframework.batch.execution.repository.JobRepositoryFactoryBean" + class="org.springframework.batch.core.repository.support.JobRepositoryFactoryBean" <property name="databaseType" value="hsql" /> <property name="dataSource" value="dataSource" /> </bean> @@ -470,13 +470,13 @@ </bean> <bean id="mapJobInstanceDao" - class="org.springframework.batch.execution.repository.dao.MapJobInstanceDao" /> + class="org.springframework.batch.core.repository.dao.MapJobInstanceDao" /> <bean id="mapJobExecutionDao" - class="org.springframework.batch.execution.repository.dao.MapJobExecutionDao" /> + class="org.springframework.batch.core.repository.dao.MapJobExecutionDao" /> <bean id="mapStepExecutionDao" - class="org.springframework.batch.execution.repository.dao.MapStepExecutionDao" /> + class="org.springframework.batch.core.repository.dao.MapStepExecutionDao" /> The Map* DAO implementations store the batch artifacts in a transactional map. So, the repository and DAOs may still be used @@ -1535,4 +1535,4 @@ state in a transactional resource like a database. - \ No newline at end of file +