Package io.freefair.spring.okhttp.client
Record Class OkHttpClientRequestFactory
java.lang.Object
java.lang.Record
io.freefair.spring.okhttp.client.OkHttpClientRequestFactory
- All Implemented Interfaces:
ClientHttpRequestFactory
public record OkHttpClientRequestFactory(@NonNull okhttp3.OkHttpClient okHttpClient)
extends Record
implements ClientHttpRequestFactory
OkHttp based
ClientHttpRequestFactory
implementation.
Serves as replacement for the deprecated OkHttp3ClientHttpRequestFactory
.
-
Constructor Summary
ConstructorsConstructorDescriptionOkHttpClientRequestFactory
(@NonNull okhttp3.OkHttpClient okHttpClient) Creates an instance of aOkHttpClientRequestFactory
record class. -
Method Summary
Modifier and TypeMethodDescriptioncreateRequest
(URI uri, 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.@NonNull okhttp3.OkHttpClient
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
- Specified by:
createRequest
in interfaceClientHttpRequestFactory
-
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
-