From 49e24b7dfa3fc5a360522828452bace707d3452c Mon Sep 17 00:00:00 2001 From: rstoyanchev Date: Fri, 28 Mar 2025 19:10:32 +0000 Subject: [PATCH] Add author tags to HTTP Service registry See gh-33992 --- .../web/service/registry/AbstractHttpServiceRegistrar.java | 1 + .../springframework/web/service/registry/HttpServiceGroup.java | 1 + .../web/service/registry/HttpServiceGroupAdapter.java | 1 + .../service/registry/HttpServiceProxyRegistryFactoryBean.java | 1 + .../springframework/web/service/registry/ImportHttpServices.java | 1 + 5 files changed, 5 insertions(+) diff --git a/spring-web/src/main/java/org/springframework/web/service/registry/AbstractHttpServiceRegistrar.java b/spring-web/src/main/java/org/springframework/web/service/registry/AbstractHttpServiceRegistrar.java index e0adc829ac8..9be5586c888 100644 --- a/spring-web/src/main/java/org/springframework/web/service/registry/AbstractHttpServiceRegistrar.java +++ b/spring-web/src/main/java/org/springframework/web/service/registry/AbstractHttpServiceRegistrar.java @@ -73,6 +73,7 @@ import org.springframework.web.service.annotation.HttpExchange; * {@link HttpServiceProxyRegistry} from which to obtain proxies. * * @author Rossen Stoyanchev + * @author Phillip Webb * @since 7.0 * @see ImportHttpServices * @see HttpServiceProxyRegistryFactoryBean diff --git a/spring-web/src/main/java/org/springframework/web/service/registry/HttpServiceGroup.java b/spring-web/src/main/java/org/springframework/web/service/registry/HttpServiceGroup.java index de5632cd07b..75d89015b65 100644 --- a/spring-web/src/main/java/org/springframework/web/service/registry/HttpServiceGroup.java +++ b/spring-web/src/main/java/org/springframework/web/service/registry/HttpServiceGroup.java @@ -23,6 +23,7 @@ import java.util.Set; * {@link org.springframework.web.service.invoker.HttpServiceProxyFactory} and * HTTP client setup. * + * @author Olga Maciaszek-Sharma * @author Rossen Stoyanchev * @since 7.0 */ diff --git a/spring-web/src/main/java/org/springframework/web/service/registry/HttpServiceGroupAdapter.java b/spring-web/src/main/java/org/springframework/web/service/registry/HttpServiceGroupAdapter.java index d6960706138..f990431dba6 100644 --- a/spring-web/src/main/java/org/springframework/web/service/registry/HttpServiceGroupAdapter.java +++ b/spring-web/src/main/java/org/springframework/web/service/registry/HttpServiceGroupAdapter.java @@ -22,6 +22,7 @@ import org.springframework.web.service.invoker.HttpExchangeAdapter; * Adapter that helps to configure a group independent of its client builder type. * * @author Rossen Stoyanchev + * @author Phillip Webb * @since 7.0 * @param the type of client builder, i.e. {@code RestClient} or {@code WebClient} builder. */ diff --git a/spring-web/src/main/java/org/springframework/web/service/registry/HttpServiceProxyRegistryFactoryBean.java b/spring-web/src/main/java/org/springframework/web/service/registry/HttpServiceProxyRegistryFactoryBean.java index ce5034c8fce..059c6111640 100644 --- a/spring-web/src/main/java/org/springframework/web/service/registry/HttpServiceProxyRegistryFactoryBean.java +++ b/spring-web/src/main/java/org/springframework/web/service/registry/HttpServiceProxyRegistryFactoryBean.java @@ -51,6 +51,7 @@ import org.springframework.web.service.invoker.HttpServiceProxyFactory; * {@link AbstractHttpServiceRegistrar}, and given . * * @author Rossen Stoyanchev + * @author Phillip Webb * @since 7.0 * @see AbstractHttpServiceRegistrar */ diff --git a/spring-web/src/main/java/org/springframework/web/service/registry/ImportHttpServices.java b/spring-web/src/main/java/org/springframework/web/service/registry/ImportHttpServices.java index 6ee756f26b0..78741be1ca2 100644 --- a/spring-web/src/main/java/org/springframework/web/service/registry/ImportHttpServices.java +++ b/spring-web/src/main/java/org/springframework/web/service/registry/ImportHttpServices.java @@ -43,6 +43,7 @@ import org.springframework.web.service.annotation.HttpExchange; *

An application can autowire HTTP Service proxy beans, or autowire the * {@link HttpServiceProxyRegistry} from which to obtain proxies. * + * @author Olga Maciaszek-Sharma * @author Rossen Stoyanchev * @since 7.0 * @see HttpServiceGroups