Uses of Class
org.springframework.vault.support.TransformPlaintext
Packages that use TransformPlaintext
Package
Description
Vault core support.
Classes supporting the Vault packages, such as value objects.
-
Uses of TransformPlaintext in org.springframework.vault.core
Methods in org.springframework.vault.core that return TransformPlaintextModifier and TypeMethodDescriptionVaultTransformOperations.decode
(String roleName, TransformCiphertext ciphertext) Decode the provided ciphertext using the named role.VaultTransformTemplate.decode
(String roleName, TransformCiphertext ciphertext) Methods in org.springframework.vault.core with parameters of type TransformPlaintextModifier and TypeMethodDescriptionVaultTransformOperations.encode
(String roleName, TransformPlaintext plaintext) Encode the provided plaintext using the named role.VaultTransformTemplate.encode
(String roleName, TransformPlaintext plaintext) Method parameters in org.springframework.vault.core with type arguments of type TransformPlaintextModifier and TypeMethodDescriptionVaultTransformOperations.encode
(String roleName, List<TransformPlaintext> batchRequest) Encode the provided batch of plaintext using the role given and transformation in each list item.VaultTransformTemplate.encode
(String roleName, List<TransformPlaintext> batchRequest) -
Uses of TransformPlaintext in org.springframework.vault.support
Methods in org.springframework.vault.support that return TransformPlaintextModifier and TypeMethodDescriptionstatic TransformPlaintext
TransformPlaintext.empty()
Factory method to create an emptyTransformPlaintext
.protected TransformPlaintext
VaultTransformDecodeResult.get0()
static TransformPlaintext
TransformPlaintext.of
(byte[] plaintext) Factory method to createTransformPlaintext
from a byte sequence.static TransformPlaintext
Factory method to createTransformPlaintext
using fromString
.static TransformPlaintext
TransformPlaintext.with
(VaultTransformContext context) Create a newTransformPlaintext
object from this plaintext associated with the givenVaultTransformContext
.Constructors in org.springframework.vault.support with parameters of type TransformPlaintextModifierConstructorDescriptionVaultTransformDecodeResult
(TransformPlaintext plaintext) CreateVaultTransformDecodeResult
for a successfully decryptedTransformPlaintext
.