Update references to HTTP service clients in docs

Closes gh-35522
This commit is contained in:
rstoyanchev
2025-09-22 11:35:46 +01:00
parent 79738d921a
commit e9e19f5ed7
12 changed files with 44 additions and 46 deletions
@@ -127,7 +127,7 @@ public class HttpRequestValues {
/**
* Return the {@link UriBuilderFactory} to expand
* the {@link HttpRequestValues#uriTemplate} and {@link #getUriVariables()} with.
* <p>The {@link UriBuilderFactory} is passed into the HTTP interface method
* <p>The {@link UriBuilderFactory} is passed into the HTTP Service client method
* in order to override the UriBuilderFactory (and its baseUrl) used by the
* underlying client.
* @since 6.1
@@ -33,7 +33,7 @@ public interface HttpServiceProxyRegistry {
* Return an HTTP service client from any group as long as there is only one
* client of this type across all groups.
* @param httpServiceType the type of client
* @param <P> the type of HTTP interface client
* @param <P> the type of HTTP service client
* @return the matched client
* @throws IllegalArgumentException if there is no client of the given type,
* or there is more than one client of the given type.
@@ -44,7 +44,7 @@ public interface HttpServiceProxyRegistry {
* Return an HTTP service client from the named group.
* @param groupName the name of the group
* @param httpServiceType the type of client
* @param <P> the type of HTTP interface client
* @param <P> the type of HTTP service client
* @return the matched client
* @throws IllegalArgumentException if there is no matching client.
*/