Record Class ApacheCoreClientConfiguration
java.lang.Object
java.lang.Record
io.micronaut.oraclecloud.httpclient.apache.core.ApacheCoreClientConfiguration
- Record Components:
proxyDomainSocket
- The proxy domain socket to use.
@ConfigurationProperties("oci.apache-core-client")
@Requires(property="oci.apache-core-client")
public record ApacheCoreClientConfiguration(@Nullable String proxyDomainSocket)
extends Record
Configuration for the Apache Core client uses for UDS requests.
-
Field Summary
-
Constructor Summary
ConstructorDescriptionApacheCoreClientConfiguration
(@Nullable String proxyDomainSocket) Creates an instance of aApacheCoreClientConfiguration
record class. -
Method Summary
Modifier and TypeMethodDescriptionfinal boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.@Nullable String
Returns the value of theproxyDomainSocket
record component.final String
toString()
Returns a string representation of this record class.
-
Field Details
-
PREFIX
- See Also:
-
-
Constructor Details
-
ApacheCoreClientConfiguration
Creates an instance of aApacheCoreClientConfiguration
record class.- Parameters:
proxyDomainSocket
- the value for theproxyDomainSocket
record component
-
-
Method Details
-
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
public final int 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)
. -
proxyDomainSocket
Returns the value of theproxyDomainSocket
record component.- Returns:
- the value of the
proxyDomainSocket
record component
-