Skip to content

Commit

Permalink
Refine naming consistency in RestOperations interface
Browse files Browse the repository at this point in the history
- Updated references from `HttpComponentsClientHttpRequestFactory` to `HttpComponentsClientRequestFactory`.

Issue: spring-projects#33382
  • Loading branch information
Torres-09 committed Aug 20, 2024
1 parent 3d6e78b commit 421d1ba
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -383,7 +383,7 @@ <T> ResponseEntity<T> postForEntity(URI url, @Nullable Object request, Class<T>
* @since 4.3.5
* @see HttpEntity
* @see RestTemplate#setRequestFactory
* @see org.springframework.http.client.HttpComponentsClientHttpRequestFactory
* @see org.springframework.http.client.HttpComponentsClientRequestFactory
*/
@Nullable
<T> T patchForObject(String url, @Nullable Object request, Class<T> responseType, Object... uriVariables)
Expand All @@ -405,7 +405,7 @@ <T> T patchForObject(String url, @Nullable Object request, Class<T> responseType
* @since 4.3.5
* @see HttpEntity
* @see RestTemplate#setRequestFactory
* @see org.springframework.http.client.HttpComponentsClientHttpRequestFactory
* @see org.springframework.http.client.HttpComponentsClientRequestFactory
*/
@Nullable
<T> T patchForObject(String url, @Nullable Object request, Class<T> responseType,
Expand All @@ -425,7 +425,7 @@ <T> T patchForObject(String url, @Nullable Object request, Class<T> responseType
* @since 4.3.5
* @see HttpEntity
* @see RestTemplate#setRequestFactory
* @see org.springframework.http.client.HttpComponentsClientHttpRequestFactory
* @see org.springframework.http.client.HttpComponentsClientRequestFactory
*/
@Nullable
<T> T patchForObject(URI url, @Nullable Object request, Class<T> responseType)
Expand Down

0 comments on commit 421d1ba

Please sign in to comment.