Deprecate ClientHttpRequestFactories

Deprecate `ClientHttpRequestFactories` and refactor its internals to
delegate to the new `ClientHttpRequestFactoryBuilder` interface.

Closes gh-36266
This commit is contained in:
Phillip Webb
2024-10-24 18:52:52 -07:00
parent 3a8b2e4bc8
commit a92001130f
14 changed files with 51 additions and 353 deletions

View File

@@ -125,7 +125,7 @@ The following code shows a typical example:
include-code::MyService[]
If you need to apply other customization in addition to an SSL bundle, you can use the `ClientHttpRequestFactorySettings` class with `ClientHttpRequestFactories`:
If you need to apply other customization in addition to an SSL bundle, you can use the `ClientHttpRequestFactorySettings` class with `ClientHttpRequestFactoryBuilder`:
include-code::settings/MyService[]