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 SummaryConstructorsConstructorDescriptionOkHttpClientRequestFactory(OkHttpClient okHttpClient) Creates an instance of aOkHttpClientRequestFactoryrecord class.
- 
Method SummaryModifier and TypeMethodDescriptionorg.springframework.http.client.ClientHttpRequestcreateRequest(URI uri, org.springframework.http.HttpMethod httpMethod) final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.Returns the value of theokHttpClientrecord component.final StringtoString()Returns a string representation of this record class.
- 
Constructor Details- 
OkHttpClientRequestFactoryCreates an instance of aOkHttpClientRequestFactoryrecord class.- Parameters:
- okHttpClient- the value for the- okHttpClientrecord component
 
 
- 
- 
Method Details- 
createRequestpublic org.springframework.http.client.ClientHttpRequest createRequest(URI uri, org.springframework.http.HttpMethod httpMethod) - Specified by:
- createRequestin interface- org.springframework.http.client.ClientHttpRequestFactory
 
- 
toStringReturns 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.
- 
hashCodeReturns a hash code value for this object. The value is derived from the hash code of each of the record components.
- 
equalsIndicates 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).
- 
okHttpClientReturns the value of theokHttpClientrecord component.- Returns:
- the value of the okHttpClientrecord component
 
 
-