Skip to content

Commit d7e13fb

Browse files
committed
Move core.explore package under core.repository
Resolves #4827
1 parent 0a880c7 commit d7e13fb

File tree

56 files changed

+64
-69
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

56 files changed

+64
-69
lines changed

spring-batch-core/src/main/java/org/springframework/batch/core/JobParametersBuilder.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
import java.util.HashMap;
2424
import java.util.Map;
2525

26-
import org.springframework.batch.core.explore.JobExplorer;
26+
import org.springframework.batch.core.repository.explore.JobExplorer;
2727
import org.springframework.lang.NonNull;
2828
import org.springframework.util.Assert;
2929

spring-batch-core/src/main/java/org/springframework/batch/core/configuration/annotation/BatchRegistrar.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@
2424
import org.springframework.batch.core.configuration.support.DefaultJobLoader;
2525
import org.springframework.batch.core.configuration.support.JobRegistrySmartInitializingSingleton;
2626
import org.springframework.batch.core.configuration.support.MapJobRegistry;
27-
import org.springframework.batch.core.explore.support.JobExplorerFactoryBean;
2827
import org.springframework.batch.core.launch.support.JobOperatorFactoryBean;
2928
import org.springframework.batch.core.launch.support.TaskExecutorJobLauncher;
3029
import org.springframework.batch.core.repository.support.JobRepositoryFactoryBean;

spring-batch-core/src/main/java/org/springframework/batch/core/configuration/support/DefaultBatchConfiguration.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,6 @@
3636
import org.springframework.batch.core.converter.StringToLocalDateConverter;
3737
import org.springframework.batch.core.converter.StringToLocalDateTimeConverter;
3838
import org.springframework.batch.core.converter.StringToLocalTimeConverter;
39-
import org.springframework.batch.core.explore.JobExplorer;
40-
import org.springframework.batch.core.explore.support.JobExplorerFactoryBean;
4139
import org.springframework.batch.core.launch.JobLauncher;
4240
import org.springframework.batch.core.launch.JobOperator;
4341
import org.springframework.batch.core.launch.support.JobOperatorFactoryBean;

spring-batch-core/src/main/java/org/springframework/batch/core/launch/support/CommandLineJobRunner.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
import org.springframework.batch.core.configuration.JobLocator;
4141
import org.springframework.batch.core.converter.DefaultJobParametersConverter;
4242
import org.springframework.batch.core.converter.JobParametersConverter;
43-
import org.springframework.batch.core.explore.JobExplorer;
43+
import org.springframework.batch.core.repository.explore.JobExplorer;
4444
import org.springframework.batch.core.launch.JobExecutionNotFailedException;
4545
import org.springframework.batch.core.launch.JobExecutionNotRunningException;
4646
import org.springframework.batch.core.launch.JobExecutionNotStoppedException;

spring-batch-core/src/main/java/org/springframework/batch/core/launch/support/JobOperatorFactoryBean.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@
2121
import org.springframework.batch.core.configuration.JobRegistry;
2222
import org.springframework.batch.core.converter.DefaultJobParametersConverter;
2323
import org.springframework.batch.core.converter.JobParametersConverter;
24-
import org.springframework.batch.core.explore.JobExplorer;
2524
import org.springframework.batch.core.launch.JobLauncher;
2625
import org.springframework.batch.core.launch.JobOperator;
2726
import org.springframework.batch.core.repository.JobRepository;

spring-batch-core/src/main/java/org/springframework/batch/core/launch/support/SimpleJobOperator.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
import org.springframework.batch.core.configuration.ListableJobLocator;
4343
import org.springframework.batch.core.converter.DefaultJobParametersConverter;
4444
import org.springframework.batch.core.converter.JobParametersConverter;
45-
import org.springframework.batch.core.explore.JobExplorer;
45+
import org.springframework.batch.core.repository.explore.JobExplorer;
4646
import org.springframework.batch.core.launch.JobExecutionNotRunningException;
4747
import org.springframework.batch.core.launch.JobInstanceAlreadyExistsException;
4848
import org.springframework.batch.core.launch.JobLauncher;

spring-batch-core/src/main/java/org/springframework/batch/core/partition/support/RemoteStepExecutionAggregator.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323

2424
import org.springframework.batch.core.JobExecution;
2525
import org.springframework.batch.core.StepExecution;
26-
import org.springframework.batch.core.explore.JobExplorer;
26+
import org.springframework.batch.core.repository.explore.JobExplorer;
2727
import org.springframework.beans.factory.InitializingBean;
2828
import org.springframework.util.Assert;
2929

spring-batch-core/src/main/java/org/springframework/batch/core/repository/JobRepository.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
import org.springframework.batch.core.JobParameters;
2323
import org.springframework.batch.core.Step;
2424
import org.springframework.batch.core.StepExecution;
25-
import org.springframework.batch.core.explore.JobExplorer;
25+
import org.springframework.batch.core.repository.explore.JobExplorer;
2626
import org.springframework.batch.core.repository.dao.JobExecutionDao;
2727
import org.springframework.batch.core.repository.dao.JobInstanceDao;
2828
import org.springframework.batch.item.ExecutionContext;

spring-batch-core/src/main/java/org/springframework/batch/core/explore/JobExplorer.java renamed to spring-batch-core/src/main/java/org/springframework/batch/core/repository/explore/JobExplorer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16-
package org.springframework.batch.core.explore;
16+
package org.springframework.batch.core.repository.explore;
1717

1818
import java.util.Collections;
1919
import java.util.List;

spring-batch-core/src/main/java/org/springframework/batch/core/explore/package-info.java renamed to spring-batch-core/src/main/java/org/springframework/batch/core/repository/explore/package-info.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@
55
* @author Mahmoud Ben Hassine
66
*/
77
@NonNullApi
8-
package org.springframework.batch.core.explore;
8+
package org.springframework.batch.core.repository.explore;
99

1010
import org.springframework.lang.NonNullApi;

0 commit comments

Comments
 (0)