Skip to content

Commit 28ad767

Browse files
committed
Merge branch '3.3.x'
Closes gh-42894
2 parents 39da14e + a7f11eb commit 28ad767

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

spring-boot-project/spring-boot/src/main/java/org/springframework/boot/webservices/client/HttpWebServiceMessageSenderBuilder.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ public class HttpWebServiceMessageSenderBuilder {
4747
/**
4848
* Set the connection timeout.
4949
* @param connectTimeout the connection timeout
50-
* @return a new builder instance
50+
* @return the current builder instance
5151
*/
5252
public HttpWebServiceMessageSenderBuilder setConnectTimeout(Duration connectTimeout) {
5353
this.requestFactorySettings = this.requestFactorySettings.withConnectTimeout(connectTimeout);
@@ -57,7 +57,7 @@ public HttpWebServiceMessageSenderBuilder setConnectTimeout(Duration connectTime
5757
/**
5858
* Set the read timeout.
5959
* @param readTimeout the read timeout
60-
* @return a new builder instance
60+
* @return the current builder instance
6161
*/
6262
public HttpWebServiceMessageSenderBuilder setReadTimeout(Duration readTimeout) {
6363
this.requestFactorySettings = this.requestFactorySettings.withReadTimeout(readTimeout);
@@ -67,7 +67,7 @@ public HttpWebServiceMessageSenderBuilder setReadTimeout(Duration readTimeout) {
6767
/**
6868
* Set an {@link SslBundle} that will be used to configure a secure connection.
6969
* @param sslBundle the SSL bundle
70-
* @return a new builder instance
70+
* @return the current builder instance
7171
*/
7272
public HttpWebServiceMessageSenderBuilder sslBundle(SslBundle sslBundle) {
7373
this.requestFactorySettings = this.requestFactorySettings.withSslBundle(sslBundle);
@@ -78,7 +78,7 @@ public HttpWebServiceMessageSenderBuilder sslBundle(SslBundle sslBundle) {
7878
* Set the {@code Supplier} of {@link ClientHttpRequestFactory} that should be called
7979
* to create the HTTP-based {@link WebServiceMessageSender}.
8080
* @param requestFactorySupplier the supplier for the request factory
81-
* @return a new builder instance
81+
* @return the current builder instance
8282
*/
8383
public HttpWebServiceMessageSenderBuilder requestFactory(
8484
Supplier<ClientHttpRequestFactory> requestFactorySupplier) {
@@ -92,7 +92,7 @@ public HttpWebServiceMessageSenderBuilder requestFactory(
9292
* {@link ClientHttpRequestFactory} that should be called to create the HTTP-based
9393
* {@link WebServiceMessageSender}.
9494
* @param requestFactoryFunction the function for the request factory
95-
* @return a new builder instance
95+
* @return the current builder instance
9696
* @since 3.0.0
9797
*/
9898
public HttpWebServiceMessageSenderBuilder requestFactory(

0 commit comments

Comments
 (0)