We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dcfbb56 commit 1dffd35Copy full SHA for 1dffd35
sdk/src/main/java/io/opentdf/platform/sdk/AssertionConfig.java
@@ -34,6 +34,11 @@ public enum Scope {
34
Scope(String scope) {
35
this.scope = scope;
36
}
37
+
38
+ @Override
39
+ public String toString() {
40
+ return scope;
41
+ }
42
43
44
public enum AssertionKeyAlg {
@@ -51,6 +56,11 @@ public enum AppliesToState {
51
56
AppliesToState(String state) {
52
57
this.state = state;
53
58
59
60
61
62
+ return state;
63
54
64
55
65
66
public enum BindingMethod {
@@ -61,6 +71,11 @@ public enum BindingMethod {
71
BindingMethod(String method) {
72
this.method = method;
73
74
75
76
77
+ return method;
78
79
80
81
static public class AssertionKey {
0 commit comments