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

@@ -32,7 +32,10 @@ import org.springframework.util.StringUtils;
* TaskLauncherSink to launch the task.
*
* @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 TaskLaunchRequest implements Serializable {
private static final long serialVersionUID = 1L;

View File

@@ -35,8 +35,10 @@ import org.springframework.util.Assert;
* A sink stream application that launches a tasks.
*
* @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 TaskLauncherSink {
private final static Logger logger = LoggerFactory.getLogger(TaskLauncherSink.class);

View File

@@ -50,12 +50,15 @@ import org.springframework.context.annotation.Import;
* <code>&#064;EnableTaskLauncher</code> annotation.
*
* @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.
*/
@Target(ElementType.TYPE)
@Retention(RetentionPolicy.RUNTIME)
@Documented
@Inherited
@Import({ TaskLauncherSink.class })
@Deprecated
public @interface EnableTaskLauncher {
}