Class GenerateEncryptionKeyResponse
- java.lang.Object
-
- org.apache.ignite.internal.managers.encryption.GenerateEncryptionKeyResponse
-
- All Implemented Interfaces:
Serializable,Message
public class GenerateEncryptionKeyResponse extends Object implements Message
Generate encryption key response.- See Also:
- Serialized Form
-
-
Field Summary
-
Fields inherited from interface org.apache.ignite.plugin.extensions.communication.Message
DIRECT_TYPE_SIZE
-
-
Constructor Summary
Constructors Constructor Description GenerateEncryptionKeyResponse()GenerateEncryptionKeyResponse(IgniteUuid id, Collection<byte[]> encKeys, byte[] masterKeyDigest)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description shortdirectType()Gets message type.Collection<byte[]>encryptionKeys()bytefieldsCount()Gets fields count.byte[]masterKeyDigest()voidonAckReceived()Method called when ack message received.booleanreadFrom(ByteBuffer buf, MessageReader reader)Reads this message from provided byte buffer.IgniteUuidrequestId()StringtoString()booleanwriteTo(ByteBuffer buf, MessageWriter writer)Writes this message to provided byte buffer.
-
-
-
Constructor Detail
-
GenerateEncryptionKeyResponse
public GenerateEncryptionKeyResponse()
-
GenerateEncryptionKeyResponse
public GenerateEncryptionKeyResponse(IgniteUuid id, Collection<byte[]> encKeys, byte[] masterKeyDigest)
- Parameters:
id- Request id.encKeys- Encryption keys.masterKeyDigest- Master key digest.
-
-
Method Detail
-
requestId
public IgniteUuid requestId()
- Returns:
- Request id.
-
encryptionKeys
public Collection<byte[]> encryptionKeys()
- Returns:
- Encryption keys.
-
masterKeyDigest
public byte[] masterKeyDigest()
- Returns:
- Master key digest that encrypted group encryption keys.
-
writeTo
public boolean writeTo(ByteBuffer buf, MessageWriter writer)
Writes this message to provided byte buffer.
-
readFrom
public boolean readFrom(ByteBuffer buf, MessageReader reader)
Reads this message from provided byte buffer.
-
directType
public short directType()
Gets message type.- Specified by:
directTypein interfaceMessage- Returns:
- Message type.
-
fieldsCount
public byte fieldsCount()
Gets fields count.- Specified by:
fieldsCountin interfaceMessage- Returns:
- Fields count.
-
onAckReceived
public void onAckReceived()
Method called when ack message received.- Specified by:
onAckReceivedin interfaceMessage
-
-