Add deprecation notices for features impacted by SC-Deployer

This commit is contained in:
Glenn Renfro
2025-04-28 17:32:41 -04:00
parent dbec2b04b1
commit 1d4e1593ac
15 changed files with 41 additions and 18 deletions

View File

@@ -26,7 +26,10 @@ import org.springframework.batch.item.ExecutionContext;
*
* @author Michael Minella
* @since 1.1.0
* @deprecated This feature is now end-of-life and will be removed in a future release. No
* replacement is planned. Please migrate away from using this functionality.
*/
@Deprecated
public interface CommandLineArgsProvider {
/**

View File

@@ -73,7 +73,10 @@ import org.springframework.util.CollectionUtils;
*
* @author Michael Minella
* @author Glenn Renfro
* @deprecated This feature is now end-of-life and will be removed in a future release. No
* replacement is planned. Please migrate away from using this functionality.
*/
@Deprecated
public class DeployerPartitionHandler implements PartitionHandler, EnvironmentAware, InitializingBean {
/**

View File

@@ -56,7 +56,10 @@ import org.springframework.util.Assert;
* </ul>
*
* @author Michael Minella
* @deprecated This feature is now end-of-life and will be removed in a future release. No
* replacement is planned. Please migrate away from using this functionality.
*/
@Deprecated
public class DeployerStepExecutionHandler implements CommandLineRunner {
private JobExplorer jobExplorer;

View File

@@ -26,7 +26,10 @@ import org.springframework.batch.item.ExecutionContext;
*
* @author Michael Minella
* @since 1.0.2
* @deprecated This feature is now end-of-life and will be removed in a future release. No
* replacement is planned. Please migrate away from using this functionality.
*/
@Deprecated
public interface EnvironmentVariablesProvider {
/**

View File

@@ -27,7 +27,10 @@ import org.springframework.batch.item.ExecutionContext;
*
* @author Michael Minella
* @since 1.0.2
* @deprecated This feature is now end-of-life and will be removed in a future release. No
* replacement is planned. Please migrate away from using this functionality.
*/
@Deprecated
public class NoOpEnvironmentVariablesProvider implements EnvironmentVariablesProvider {
/**

View File

@@ -26,7 +26,10 @@ import org.springframework.util.Assert;
*
* @author Michael Minella
* @since 1.1.0
* @deprecated This feature is now end-of-life and will be removed in a future release. No
* replacement is planned. Please migrate away from using this functionality.
*/
@Deprecated
public class PassThroughCommandLineArgsProvider implements CommandLineArgsProvider {
private final List<String> commandLineArgs;

View File

@@ -31,7 +31,10 @@ import org.springframework.util.Assert;
* @author Michael Minella
* @author Glenn Renfro
* @since 1.1.0
* @deprecated This feature is now end-of-life and will be removed in a future release. No
* replacement is planned. Please migrate away from using this functionality.
*/
@Deprecated
public class SimpleCommandLineArgsProvider implements CommandLineArgsProvider, TaskExecutionListener {
private TaskExecution taskExecution;

View File

@@ -36,7 +36,10 @@ import org.springframework.core.env.PropertySource;
*
* @author Michael Minella
* @since 1.0.2
* @deprecated This feature is now end-of-life and will be removed in a future release. No
* replacement is planned. Please migrate away from using this functionality.
*/
@Deprecated
public class SimpleEnvironmentVariablesProvider implements EnvironmentVariablesProvider {
private Environment environment;

View File

@@ -36,7 +36,10 @@ import org.springframework.util.StringUtils;
* Supports the launching of partitions.
*
* @author Glenn Renfro
* @deprecated This feature is now end-of-life and will be removed in a future release. No
* replacement is planned. Please migrate away from using this functionality.
*/
@Deprecated
public class TaskLauncherHandler implements Runnable {
private CommandLineArgsProvider commandLineArgsProvider;