public class DecryptResult extends Object implements Serializable, Cloneable
Constructor and Description |
---|
DecryptResult() |
Modifier and Type | Method and Description |
---|---|
DecryptResult |
clone() |
boolean |
equals(Object obj) |
String |
getKeyId()
ARN of the key used to perform the decryption.
|
ByteBuffer |
getPlaintext()
Decrypted plaintext data.
|
int |
hashCode() |
void |
setKeyId(String keyId)
ARN of the key used to perform the decryption.
|
void |
setPlaintext(ByteBuffer plaintext)
Decrypted plaintext data.
|
String |
toString()
Returns a string representation of this object; useful for testing and
debugging.
|
DecryptResult |
withKeyId(String keyId)
ARN of the key used to perform the decryption.
|
DecryptResult |
withPlaintext(ByteBuffer plaintext)
Decrypted plaintext data.
|
public void setKeyId(String keyId)
ARN of the key used to perform the decryption. This value is returned if no errors are encountered during the operation.
keyId
- ARN of the key used to perform the decryption. This value is
returned if no errors are encountered during the operation.public String getKeyId()
ARN of the key used to perform the decryption. This value is returned if no errors are encountered during the operation.
public DecryptResult withKeyId(String keyId)
ARN of the key used to perform the decryption. This value is returned if no errors are encountered during the operation.
keyId
- ARN of the key used to perform the decryption. This value is
returned if no errors are encountered during the operation.public void setPlaintext(ByteBuffer plaintext)
Decrypted plaintext data. This value may not be returned if the customer master key is not available or if you didn't have permission to use it.
plaintext
- Decrypted plaintext data. This value may not be returned if the
customer master key is not available or if you didn't have
permission to use it.public ByteBuffer getPlaintext()
Decrypted plaintext data. This value may not be returned if the customer master key is not available or if you didn't have permission to use it.
ByteBuffer
s are stateful. Calling their get
methods
changes their position
. We recommend using
ByteBuffer.asReadOnlyBuffer()
to create a read-only view
of the buffer with an independent position
, and calling
get
methods on this rather than directly on the returned
ByteBuffer
. Doing so will ensure that anyone else using the
ByteBuffer
will not be affected by changes to the position
.
public DecryptResult withPlaintext(ByteBuffer plaintext)
Decrypted plaintext data. This value may not be returned if the customer master key is not available or if you didn't have permission to use it.
plaintext
- Decrypted plaintext data. This value may not be returned if the
customer master key is not available or if you didn't have
permission to use it.public String toString()
toString
in class Object
Object.toString()
public DecryptResult clone()
Copyright © 2015. All rights reserved.