Module org.firebirdsql.jaybird
Record Class KnownServerKey.PluginSpecificData
java.lang.Object
java.lang.Record
org.firebirdsql.gds.ng.wire.crypt.KnownServerKey.PluginSpecificData
- Record Components:
encryptionIdentifier
- encryption identifierspecificData
- plugin specific data (can benull
)
- Enclosing class:
- KnownServerKey
public static record KnownServerKey.PluginSpecificData(EncryptionIdentifier encryptionIdentifier, byte[] specificData)
extends Record
Class to hold plugin specific data.
- Since:
- 5
-
Constructor Summary
ConstructorsConstructorDescriptionPluginSpecificData
(EncryptionIdentifier encryptionIdentifier, byte[] specificData) Creates an instance of aPluginSpecificData
record class. -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of theencryptionIdentifier
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.byte[]
Returns the value of thespecificData
record component.final String
toString()
Returns a string representation of this record class.
-
Constructor Details
-
PluginSpecificData
Creates an instance of aPluginSpecificData
record class.- Parameters:
encryptionIdentifier
- the value for theencryptionIdentifier
record componentspecificData
- the value for thespecificData
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)
. -
encryptionIdentifier
Returns the value of theencryptionIdentifier
record component.- Returns:
- the value of the
encryptionIdentifier
record component
-
specificData
public byte[] specificData()Returns the value of thespecificData
record component.- Returns:
- the value of the
specificData
record component
-