[BATCH 429] Moved core.repository.support.dao to core.repository.dao
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
package org.springframework.batch.core.repository.support.dao;
|
||||
package org.springframework.batch.core.repository.dao;
|
||||
|
||||
import org.springframework.beans.factory.InitializingBean;
|
||||
import org.springframework.jdbc.core.JdbcOperations;
|
||||
@@ -1,4 +1,4 @@
|
||||
package org.springframework.batch.core.repository.support.dao;
|
||||
package org.springframework.batch.core.repository.dao;
|
||||
|
||||
import java.sql.ResultSet;
|
||||
import java.sql.SQLException;
|
||||
@@ -1,4 +1,4 @@
|
||||
package org.springframework.batch.core.repository.support.dao;
|
||||
package org.springframework.batch.core.repository.dao;
|
||||
|
||||
import java.sql.ResultSet;
|
||||
import java.sql.SQLException;
|
||||
@@ -1,4 +1,4 @@
|
||||
package org.springframework.batch.core.repository.support.dao;
|
||||
package org.springframework.batch.core.repository.dao;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.sql.PreparedStatement;
|
||||
@@ -1,4 +1,4 @@
|
||||
package org.springframework.batch.core.repository.support.dao;
|
||||
package org.springframework.batch.core.repository.dao;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
package org.springframework.batch.core.repository.support.dao;
|
||||
package org.springframework.batch.core.repository.dao;
|
||||
|
||||
import org.springframework.batch.core.Job;
|
||||
import org.springframework.batch.core.JobInstance;
|
||||
@@ -1,4 +1,4 @@
|
||||
package org.springframework.batch.core.repository.support.dao;
|
||||
package org.springframework.batch.core.repository.dao;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.Iterator;
|
||||
@@ -1,4 +1,4 @@
|
||||
package org.springframework.batch.core.repository.support.dao;
|
||||
package org.springframework.batch.core.repository.dao;
|
||||
|
||||
import java.util.Collection;
|
||||
import java.util.Iterator;
|
||||
@@ -14,7 +14,7 @@
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
package org.springframework.batch.core.repository.support.dao;
|
||||
package org.springframework.batch.core.repository.dao;
|
||||
|
||||
import java.util.Map;
|
||||
|
||||
@@ -14,7 +14,7 @@
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
package org.springframework.batch.core.repository.support.dao;
|
||||
package org.springframework.batch.core.repository.dao;
|
||||
|
||||
/**
|
||||
* This exception identifies that a batch domain object is invalid, which
|
||||
@@ -1,4 +1,4 @@
|
||||
package org.springframework.batch.core.repository.support.dao;
|
||||
package org.springframework.batch.core.repository.dao;
|
||||
|
||||
import org.springframework.batch.core.JobExecution;
|
||||
import org.springframework.batch.core.Step;
|
||||
@@ -18,12 +18,12 @@ package org.springframework.batch.core.repository.support;
|
||||
|
||||
import javax.sql.DataSource;
|
||||
|
||||
import org.springframework.batch.core.repository.support.dao.JdbcJobExecutionDao;
|
||||
import org.springframework.batch.core.repository.support.dao.JdbcJobInstanceDao;
|
||||
import org.springframework.batch.core.repository.support.dao.JdbcStepExecutionDao;
|
||||
import org.springframework.batch.core.repository.support.dao.JobExecutionDao;
|
||||
import org.springframework.batch.core.repository.support.dao.JobInstanceDao;
|
||||
import org.springframework.batch.core.repository.support.dao.StepExecutionDao;
|
||||
import org.springframework.batch.core.repository.dao.JdbcJobExecutionDao;
|
||||
import org.springframework.batch.core.repository.dao.JdbcJobInstanceDao;
|
||||
import org.springframework.batch.core.repository.dao.JdbcStepExecutionDao;
|
||||
import org.springframework.batch.core.repository.dao.JobExecutionDao;
|
||||
import org.springframework.batch.core.repository.dao.JobInstanceDao;
|
||||
import org.springframework.batch.core.repository.dao.StepExecutionDao;
|
||||
import org.springframework.batch.item.database.support.DataFieldMaxValueIncrementerFactory;
|
||||
import org.springframework.batch.item.database.support.DefaultDataFieldMaxValueIncrementerFactory;
|
||||
import org.springframework.beans.factory.FactoryBean;
|
||||
|
||||
@@ -29,9 +29,9 @@ import org.springframework.batch.core.StepExecution;
|
||||
import org.springframework.batch.core.repository.JobRestartException;
|
||||
import org.springframework.batch.core.repository.JobExecutionAlreadyRunningException;
|
||||
import org.springframework.batch.core.repository.JobRepository;
|
||||
import org.springframework.batch.core.repository.support.dao.JobExecutionDao;
|
||||
import org.springframework.batch.core.repository.support.dao.JobInstanceDao;
|
||||
import org.springframework.batch.core.repository.support.dao.StepExecutionDao;
|
||||
import org.springframework.batch.core.repository.dao.JobExecutionDao;
|
||||
import org.springframework.batch.core.repository.dao.JobInstanceDao;
|
||||
import org.springframework.batch.core.repository.dao.StepExecutionDao;
|
||||
import org.springframework.transaction.annotation.Isolation;
|
||||
import org.springframework.util.Assert;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user