Module java4ever.binding
Package tech.deplant.java4ever.binding
Record Class Crypto.ParamsOfAppPasswordProvider.GetPassword
java.lang.Object
java.lang.Record
tech.deplant.java4ever.binding.Crypto.ParamsOfAppPasswordProvider.GetPassword
- Record Components:
encryptionPublicKey- Temporary library pubkey, that is used on application side for password encryption, along with application temporary private key and nonce. Used for password decryption on library side.
- All Implemented Interfaces:
Crypto.ParamsOfAppPasswordProvider
- Enclosing interface:
Crypto.ParamsOfAppPasswordProvider
public static record Crypto.ParamsOfAppPasswordProvider.GetPassword(String encryptionPublicKey)
extends Record
implements Crypto.ParamsOfAppPasswordProvider
-
Nested Class Summary
Nested classes/interfaces inherited from interface tech.deplant.java4ever.binding.Crypto.ParamsOfAppPasswordProvider
Crypto.ParamsOfAppPasswordProvider.GetPassword -
Constructor Summary
ConstructorsConstructorDescriptionGetPassword(String encryptionPublicKey) Creates an instance of aGetPasswordrecord class. -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of theencryptionPublicKeyrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.final StringtoString()Returns a string representation of this record class.type()
-
Constructor Details
-
GetPassword
Creates an instance of aGetPasswordrecord class.- Parameters:
encryptionPublicKey- the value for theencryptionPublicKeyrecord component
-
-
Method Details
-
type
-
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). -
encryptionPublicKey
Returns the value of theencryptionPublicKeyrecord component.- Returns:
- the value of the
encryptionPublicKeyrecord component
-