Record Class ClientHttpRequestFactorySettings
java.lang.Object
java.lang.Record
org.springframework.boot.web.client.ClientHttpRequestFactorySettings
- Record Components:
connectTimeout- the connect timeoutreadTimeout- the read timeoutsslBundle- the SSL bundle providing SSL configuration
@Deprecated(since="3.4.0",
forRemoval=true)
public record ClientHttpRequestFactorySettings(Duration connectTimeout, Duration readTimeout, SslBundle sslBundle)
extends Record
Deprecated, for removal: This API element is subject to removal in a future version.
Settings that can be applied when creating a
ClientHttpRequestFactory.- Since:
- 3.0.0
- Author:
- Andy Wilkinson, Phillip Webb, Scott Frederick
- See Also:
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final ClientHttpRequestFactorySettingsDeprecated, for removal: This API element is subject to removal in a future version.Use defaults for theClientHttpRequestFactorywhich can differ depending on the implementation. -
Constructor Summary
ConstructorsConstructorDescriptionClientHttpRequestFactorySettings(Duration connectTimeout, Duration readTimeout, SslBundle sslBundle) Deprecated, for removal: This API element is subject to removal in a future version.Creates an instance of aClientHttpRequestFactorySettingsrecord class. -
Method Summary
Modifier and TypeMethodDescriptionDeprecated, for removal: This API element is subject to removal in a future version.Returns the value of theconnectTimeoutrecord component.final booleanDeprecated, for removal: This API element is subject to removal in a future version.Indicates whether some other object is "equal to" this one.final inthashCode()Deprecated, for removal: This API element is subject to removal in a future version.Returns a hash code value for this object.Deprecated, for removal: This API element is subject to removal in a future version.Returns the value of thereadTimeoutrecord component.Deprecated, for removal: This API element is subject to removal in a future version.Returns the value of thesslBundlerecord component.final StringtoString()Deprecated, for removal: This API element is subject to removal in a future version.Returns a string representation of this record class.withConnectTimeout(Duration connectTimeout) Deprecated, for removal: This API element is subject to removal in a future version.Return a newClientHttpRequestFactorySettingsinstance with an updated connect timeout setting.withReadTimeout(Duration readTimeout) Deprecated, for removal: This API element is subject to removal in a future version.Return a newClientHttpRequestFactorySettingsinstance with an updated read timeout setting.withSslBundle(SslBundle sslBundle) Deprecated, for removal: This API element is subject to removal in a future version.Return a newClientHttpRequestFactorySettingsinstance with an updated SSL bundle setting.
-
Field Details
-
DEFAULTS
Deprecated, for removal: This API element is subject to removal in a future version.Use defaults for theClientHttpRequestFactorywhich can differ depending on the implementation.
-
-
Constructor Details
-
ClientHttpRequestFactorySettings
public ClientHttpRequestFactorySettings(Duration connectTimeout, Duration readTimeout, SslBundle sslBundle) Deprecated, for removal: This API element is subject to removal in a future version.Creates an instance of aClientHttpRequestFactorySettingsrecord class.- Parameters:
connectTimeout- the value for theconnectTimeoutrecord componentreadTimeout- the value for thereadTimeoutrecord componentsslBundle- the value for thesslBundlerecord component
-
-
Method Details
-
withConnectTimeout
Deprecated, for removal: This API element is subject to removal in a future version.Return a newClientHttpRequestFactorySettingsinstance with an updated connect timeout setting.- Parameters:
connectTimeout- the new connect timeout setting- Returns:
- a new
ClientHttpRequestFactorySettingsinstance
-
withReadTimeout
Deprecated, for removal: This API element is subject to removal in a future version.Return a newClientHttpRequestFactorySettingsinstance with an updated read timeout setting.- Parameters:
readTimeout- the new read timeout setting- Returns:
- a new
ClientHttpRequestFactorySettingsinstance
-
withSslBundle
Deprecated, for removal: This API element is subject to removal in a future version.Return a newClientHttpRequestFactorySettingsinstance with an updated SSL bundle setting.- Parameters:
sslBundle- the new SSL bundle setting- Returns:
- a new
ClientHttpRequestFactorySettingsinstance - Since:
- 3.1.0
-
toString
Deprecated, for removal: This API element is subject to removal in a future version.Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components. -
hashCode
public final int hashCode()Deprecated, for removal: This API element is subject to removal in a future version.Returns a hash code value for this object. The value is derived from the hash code of each of the record components. -
equals
Deprecated, for removal: This API element is subject to removal in a future version.Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. All components in this record class are compared withObjects::equals(Object,Object). -
connectTimeout
Deprecated, for removal: This API element is subject to removal in a future version.Returns the value of theconnectTimeoutrecord component.- Returns:
- the value of the
connectTimeoutrecord component
-
readTimeout
Deprecated, for removal: This API element is subject to removal in a future version.Returns the value of thereadTimeoutrecord component.- Returns:
- the value of the
readTimeoutrecord component
-
sslBundle
Deprecated, for removal: This API element is subject to removal in a future version.Returns the value of thesslBundlerecord component.- Returns:
- the value of the
sslBundlerecord component
-
ClientHttpRequestFactorySettings