Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public class HttpWebServiceMessageSenderBuilder {
/**
* Set the connection timeout.
* @param connectTimeout the connection timeout
* @return a new builder instance
* @return the current builder instance
*/
public HttpWebServiceMessageSenderBuilder setConnectTimeout(Duration connectTimeout) {
this.connectTimeout = connectTimeout;
Expand All @@ -58,7 +58,7 @@ public HttpWebServiceMessageSenderBuilder setConnectTimeout(Duration connectTime
/**
* Set the read timeout.
* @param readTimeout the read timeout
* @return a new builder instance
* @return the current builder instance
*/
public HttpWebServiceMessageSenderBuilder setReadTimeout(Duration readTimeout) {
this.readTimeout = readTimeout;
Expand All @@ -68,7 +68,7 @@ public HttpWebServiceMessageSenderBuilder setReadTimeout(Duration readTimeout) {
/**
* Set an {@link SslBundle} that will be used to configure a secure connection.
* @param sslBundle the SSL bundle
* @return a new builder instance
* @return the current builder instance
*/
public HttpWebServiceMessageSenderBuilder sslBundle(SslBundle sslBundle) {
this.sslBundle = sslBundle;
Expand All @@ -79,7 +79,7 @@ public HttpWebServiceMessageSenderBuilder sslBundle(SslBundle sslBundle) {
* Set the {@code Supplier} of {@link ClientHttpRequestFactory} that should be called
* to create the HTTP-based {@link WebServiceMessageSender}.
* @param requestFactorySupplier the supplier for the request factory
* @return a new builder instance
* @return the current builder instance
*/
public HttpWebServiceMessageSenderBuilder requestFactory(
Supplier<ClientHttpRequestFactory> requestFactorySupplier) {
Expand All @@ -93,7 +93,7 @@ public HttpWebServiceMessageSenderBuilder requestFactory(
* {@link ClientHttpRequestFactory} that should be called to create the HTTP-based
* {@link WebServiceMessageSender}.
* @param requestFactoryFunction the function for the request factory
* @return a new builder instance
* @return the current builder instance
* @since 3.0.0
*/
public HttpWebServiceMessageSenderBuilder requestFactory(
Expand Down