Browse Source

Add author tags to HTTP Service registry

See gh-33992
pull/34696/head
rstoyanchev 1 year ago
parent
commit
49e24b7dfa
  1. 1
      spring-web/src/main/java/org/springframework/web/service/registry/AbstractHttpServiceRegistrar.java
  2. 1
      spring-web/src/main/java/org/springframework/web/service/registry/HttpServiceGroup.java
  3. 1
      spring-web/src/main/java/org/springframework/web/service/registry/HttpServiceGroupAdapter.java
  4. 1
      spring-web/src/main/java/org/springframework/web/service/registry/HttpServiceProxyRegistryFactoryBean.java
  5. 1
      spring-web/src/main/java/org/springframework/web/service/registry/ImportHttpServices.java

1
spring-web/src/main/java/org/springframework/web/service/registry/AbstractHttpServiceRegistrar.java

@ -73,6 +73,7 @@ import org.springframework.web.service.annotation.HttpExchange; @@ -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

1
spring-web/src/main/java/org/springframework/web/service/registry/HttpServiceGroup.java

@ -23,6 +23,7 @@ import java.util.Set; @@ -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
*/

1
spring-web/src/main/java/org/springframework/web/service/registry/HttpServiceGroupAdapter.java

@ -22,6 +22,7 @@ import org.springframework.web.service.invoker.HttpExchangeAdapter; @@ -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 <CB> the type of client builder, i.e. {@code RestClient} or {@code WebClient} builder.
*/

1
spring-web/src/main/java/org/springframework/web/service/registry/HttpServiceProxyRegistryFactoryBean.java

@ -51,6 +51,7 @@ import org.springframework.web.service.invoker.HttpServiceProxyFactory; @@ -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
*/

1
spring-web/src/main/java/org/springframework/web/service/registry/ImportHttpServices.java

@ -43,6 +43,7 @@ import org.springframework.web.service.annotation.HttpExchange; @@ -43,6 +43,7 @@ import org.springframework.web.service.annotation.HttpExchange;
* <p>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

Loading…
Cancel
Save