Class DecryptBatch.BatchEntry
java.lang.Object
io.helidon.integrations.common.rest.ApiJsonBuilder<DecryptBatch.BatchEntry>
io.helidon.integrations.vault.secrets.transit.DecryptBatch.BatchEntry
- Enclosing class:
DecryptBatch
Definition of a batch entry.
-
Method Summary
Modifier and TypeMethodDescriptionstatic DecryptBatch.BatchEntry
builder()
A new builder for a batch entry.cipherText
(String cipherText) Configure the cipher text to be decrypted.context
(Base64Value value) Configure context data.static DecryptBatch.BatchEntry
Create a new entry from cipher text.nonce
(Base64Value value) Configure nonce.Methods inherited from class io.helidon.integrations.common.rest.ApiJsonBuilder
add, add, add, add, add, add, addBase64, addToArray, addToArray, addToArray, addToArray, addToArray, addToArray, addToObject, addToObject, addToObject, addToObject, addToObject, emptyArray, me, postBuild, preBuild, toJson
-
Method Details
-
builder
A new builder for a batch entry.- Returns:
- a new batch entry
-
create
Create a new entry from cipher text.- Parameters:
cipherText
- cipher text as returned by an encrypt method- Returns:
- a new batch entry
-
cipherText
Configure the cipher text to be decrypted.- Parameters:
cipherText
- cipher text- Returns:
- updated entry
-
context
Configure context data.- Parameters:
value
- base64 context- Returns:
- updated entry
-
nonce
Configure nonce.- Parameters:
value
- base64 nonce- Returns:
- updated entry
-