Fix broken links in Javadoc
This commit removes several links that were broken due to the removal of various APIs in 6.0. See gh-27480
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright 2002-2020 the original author or authors.
|
||||
* Copyright 2002-2021 the original author or authors.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
@@ -38,8 +38,7 @@ import org.springframework.lang.Nullable;
|
||||
* <p>Note: This is by no means a sophisticated CacheManager; it comes with no
|
||||
* cache configuration options. However, it may be useful for testing or simple
|
||||
* caching scenarios. For advanced local caching needs, consider
|
||||
* {@link org.springframework.cache.jcache.JCacheCacheManager},
|
||||
* {@link org.springframework.cache.ehcache.EhCacheCacheManager},
|
||||
* {@link org.springframework.cache.jcache.JCacheCacheManager} or
|
||||
* {@link org.springframework.cache.caffeine.CaffeineCacheManager}.
|
||||
*
|
||||
* @author Juergen Hoeller
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright 2002-2012 the original author or authors.
|
||||
* Copyright 2002-2021 the original author or authors.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
@@ -17,22 +17,17 @@
|
||||
package org.springframework.scheduling;
|
||||
|
||||
/**
|
||||
* Extension of the Runnable interface, adding special callbacks
|
||||
* Extension of the {@link Runnable} interface, adding special callbacks
|
||||
* for long-running operations.
|
||||
*
|
||||
* <p>This interface closely corresponds to the CommonJ Work interface,
|
||||
* but is kept separate to avoid a required CommonJ dependency.
|
||||
*
|
||||
* <p>Scheduling-capable TaskExecutors are encouraged to check a submitted
|
||||
* Runnable, detecting whether this interface is implemented and reacting
|
||||
* as appropriately as they are able to.
|
||||
*
|
||||
* @author Juergen Hoeller
|
||||
* @since 2.0
|
||||
* @see commonj.work.Work
|
||||
* @see org.springframework.core.task.TaskExecutor
|
||||
* @see SchedulingTaskExecutor
|
||||
* @see org.springframework.scheduling.commonj.WorkManagerTaskExecutor
|
||||
*/
|
||||
public interface SchedulingAwareRunnable extends Runnable {
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright 2002-2018 the original author or authors.
|
||||
* Copyright 2002-2021 the original author or authors.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
@@ -28,7 +28,7 @@ import org.springframework.core.task.AsyncTaskExecutor;
|
||||
*
|
||||
* <p>Note: {@link SchedulingTaskExecutor} implementations are encouraged to also
|
||||
* implement the {@link org.springframework.core.task.AsyncListenableTaskExecutor}
|
||||
* interface. This is not required due to the dependency on Spring 4.0's new
|
||||
* interface. This is not required due to the dependency on Spring 4.0's
|
||||
* {@link org.springframework.util.concurrent.ListenableFuture} interface,
|
||||
* which would make it impossible for third-party executor implementations
|
||||
* to remain compatible with both Spring 4.0 and Spring 3.x.
|
||||
@@ -37,7 +37,6 @@ import org.springframework.core.task.AsyncTaskExecutor;
|
||||
* @since 2.0
|
||||
* @see SchedulingAwareRunnable
|
||||
* @see org.springframework.core.task.TaskExecutor
|
||||
* @see org.springframework.scheduling.commonj.WorkManagerTaskExecutor
|
||||
*/
|
||||
public interface SchedulingTaskExecutor extends AsyncTaskExecutor {
|
||||
|
||||
|
||||
Reference in New Issue
Block a user