diff --git a/spring-core/src/main/java/org/springframework/core/retry/RetryListener.java b/spring-core/src/main/java/org/springframework/core/retry/RetryListener.java index 2e3241a3f65..7bfab43f979 100644 --- a/spring-core/src/main/java/org/springframework/core/retry/RetryListener.java +++ b/spring-core/src/main/java/org/springframework/core/retry/RetryListener.java @@ -18,20 +18,18 @@ package org.springframework.core.retry; import org.jspecify.annotations.Nullable; -import org.springframework.core.retry.support.CompositeRetryListener; - /** * {@code RetryListener} defines a listener API for reacting to events * published during the execution of a {@link Retryable} operation. * - *
Typically registered in a {@link RetryTemplate}, and can be composed using - * a {@link CompositeRetryListener}. + *
Typically registered in a {@link RetryTemplate}, and can be composed using a + * {@link org.springframework.core.retry.support.CompositeRetryListener CompositeRetryListener}. * * @author Mahmoud Ben Hassine * @author Sam Brannen * @author Juergen Hoeller * @since 7.0 - * @see CompositeRetryListener + * @see org.springframework.core.retry.support.CompositeRetryListener */ public interface RetryListener { diff --git a/spring-core/src/main/java/org/springframework/core/retry/support/CompositeRetryListener.java b/spring-core/src/main/java/org/springframework/core/retry/support/CompositeRetryListener.java index c205b214171..cdf02bf33f3 100644 --- a/spring-core/src/main/java/org/springframework/core/retry/support/CompositeRetryListener.java +++ b/spring-core/src/main/java/org/springframework/core/retry/support/CompositeRetryListener.java @@ -24,13 +24,13 @@ import org.jspecify.annotations.Nullable; import org.springframework.core.retry.RetryException; import org.springframework.core.retry.RetryListener; import org.springframework.core.retry.RetryPolicy; -import org.springframework.core.retry.RetryTemplate; import org.springframework.core.retry.Retryable; import org.springframework.util.Assert; /** * A composite implementation of the {@link RetryListener} interface, which is - * used to compose multiple listeners within a {@link RetryTemplate}. + * used to compose multiple listeners within a + * {@link org.springframework.core.retry.RetryTemplate RetryTemplate}. * *
Delegate listeners will be called in their registration order. *