Package ch.rswk.meta.engine
Record Class HttpService.HttpServiceSslConfig
java.lang.Object
java.lang.Record
ch.rswk.meta.engine.HttpService.HttpServiceSslConfig
- Record Components:
cipherSuites
- optional, defaults toHttpService.DEFAULT_SSL_CIPHER_SUITES
protocols
- optional, defaults toHttpService.DEFAULT_SSL_PROTOCOLS
- Enclosing class:
HttpService
-
Field Summary
FieldsModifier and TypeFieldDescriptionThe field for thecipherSuites
record component.private final String
The field for thekeystore
record component.private final String
The field for thekeystorePw
record component.The field for theprotocols
record component. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of thecipherSuites
record component.final boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.keystore()
Returns the value of thekeystore
record component.Returns the value of thekeystorePw
record component.Returns the value of theprotocols
record component.final String
toString()
Returns a string representation of this record class.
-
Field Details
-
cipherSuites
The field for thecipherSuites
record component. -
keystore
The field for thekeystore
record component. -
keystorePw
The field for thekeystorePw
record component. -
protocols
-
-
Constructor Details
-
HttpServiceSslConfig
public HttpServiceSslConfig(@Nullable Set<String> cipherSuites, String keystore, String keystorePw, @Nullable Set<String> protocols) Creates an instance of aHttpServiceSslConfig
record class.- Parameters:
cipherSuites
- the value for thecipherSuites
record componentkeystore
- the value for thekeystore
record componentkeystorePw
- the value for thekeystorePw
record componentprotocols
- the value for theprotocols
record component
-
-
Method Details
-
toString
-
hashCode
-
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)
. -
cipherSuites
Returns the value of thecipherSuites
record component.- Returns:
- the value of the
cipherSuites
record component
-
keystore
Returns the value of thekeystore
record component.- Returns:
- the value of the
keystore
record component
-
keystorePw
Returns the value of thekeystorePw
record component.- Returns:
- the value of the
keystorePw
record component
-
protocols
-