Package io.freefair.spring.okhttp.client
Record Class OkHttpClientRequestFactory
java.lang.Object
java.lang.Record
io.freefair.spring.okhttp.client.OkHttpClientRequestFactory
- All Implemented Interfaces:
org.springframework.http.client.ClientHttpRequestFactory
public record OkHttpClientRequestFactory(OkHttpClient okHttpClient)
extends Record
implements org.springframework.http.client.ClientHttpRequestFactory
OkHttp based
ClientHttpRequestFactory
implementation.
Serves as replacement for the deprecated OkHttp3ClientHttpRequestFactory
.
-
Constructor Summary
ConstructorDescriptionOkHttpClientRequestFactory
(OkHttpClient okHttpClient) Creates an instance of aOkHttpClientRequestFactory
record class. -
Method Summary
Modifier and TypeMethodDescriptionorg.springframework.http.client.ClientHttpRequest
createRequest
(URI uri, org.springframework.http.HttpMethod httpMethod) final boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.Returns the value of theokHttpClient
record component.final String
toString()
Returns a string representation of this record class.
-
Constructor Details
-
OkHttpClientRequestFactory
Creates an instance of aOkHttpClientRequestFactory
record class.- Parameters:
okHttpClient
- the value for theokHttpClient
record component
-
-
Method Details
-
createRequest
public org.springframework.http.client.ClientHttpRequest createRequest(URI uri, org.springframework.http.HttpMethod httpMethod) - Specified by:
createRequest
in interfaceorg.springframework.http.client.ClientHttpRequestFactory
-
toString
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
Returns a hash code value for this object. The value is derived from the hash code of each of the record components. -
equals
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)
. -
okHttpClient
Returns the value of theokHttpClient
record component.- Returns:
- the value of the
okHttpClient
record component
-