Skip to content

Commit 32825b0

Browse files
authoredNov 13, 2024··
fix: incorrect isStreamable serialized name (#210)
The `isStreamable` was generating the wrong serialized name in the manifest causing json schema validation to fail. Before `IsStreamable` After `isStreamable`
1 parent 0d6e761 commit 32825b0

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed
 

Diff for: ‎sdk/src/main/java/io/opentdf/platform/sdk/Manifest.java

+5-2
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,10 @@
3131
import java.util.Objects;
3232

3333
/**
34-
* The Manifest class represents a detailed structure encapsulating various aspects
35-
* of data integrity, encryption, payload, and assertions within a certain context.
34+
* The Manifest class represents a detailed structure encapsulating various
35+
* aspects
36+
* of data integrity, encryption, payload, and assertions within a certain
37+
* context.
3638
*/
3739
public class Manifest {
3840

@@ -203,6 +205,7 @@ public int hashCode() {
203205
static public class Method {
204206
public String algorithm;
205207
public String iv;
208+
@SerializedName(value = "isStreamable")
206209
public Boolean IsStreamable;
207210

208211
@Override

0 commit comments

Comments
 (0)
Please sign in to comment.