diff --git a/execution/src/main/java/org/springframework/batch/execution/bootstrap/BatchExecutionRequestEvent.java b/execution/src/main/java/org/springframework/batch/execution/bootstrap/BatchExecutionRequestEvent.java index 3e547cf20..3624b9a5b 100644 --- a/execution/src/main/java/org/springframework/batch/execution/bootstrap/BatchExecutionRequestEvent.java +++ b/execution/src/main/java/org/springframework/batch/execution/bootstrap/BatchExecutionRequestEvent.java @@ -15,7 +15,7 @@ */ package org.springframework.batch.execution.bootstrap; -import org.springframework.batch.execution.JobExecutorFacade; +import org.springframework.batch.execution.facade.JobExecutorFacade; import org.springframework.batch.repeat.interceptor.RepeatOperationsApplicationEvent; import org.springframework.context.ApplicationEvent; diff --git a/execution/src/main/java/org/springframework/batch/execution/bootstrap/TaskExecutorJobLauncher.java b/execution/src/main/java/org/springframework/batch/execution/bootstrap/TaskExecutorJobLauncher.java index 5009274fb..767783ae2 100644 --- a/execution/src/main/java/org/springframework/batch/execution/bootstrap/TaskExecutorJobLauncher.java +++ b/execution/src/main/java/org/springframework/batch/execution/bootstrap/TaskExecutorJobLauncher.java @@ -25,8 +25,8 @@ import org.apache.commons.logging.LogFactory; import org.springframework.batch.core.configuration.NoSuchJobConfigurationException; import org.springframework.batch.core.runtime.JobExecutionContext; import org.springframework.batch.core.runtime.JobIdentifier; -import org.springframework.batch.execution.JobExecutorFacade; -import org.springframework.batch.execution.NoSuchJobExecutionException; +import org.springframework.batch.execution.facade.JobExecutorFacade; +import org.springframework.batch.execution.facade.NoSuchJobExecutionException; import org.springframework.batch.repeat.ExitStatus; import org.springframework.batch.repeat.interceptor.RepeatOperationsApplicationEvent; import org.springframework.batch.statistics.StatisticsProvider;