You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
DetokenizeDatadetokenizeDataRecord1 = newDetokenizeData("<YOUR_TOKEN_VALUE_1>", RedactionType.MASKED); // Replace with a token to detokenize with MASKED redaction
51
+
DetokenizeDatadetokenizeDataRecord2 = newDetokenizeData("<YOUR_TOKEN_VALUE_2>"); // Replace with another token to detokenize with PLAIN_TEXT redaction
Copy file name to clipboardExpand all lines: src/main/java/com/skyflow/logs/ErrorLogs.java
+3-2Lines changed: 3 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -61,8 +61,9 @@ public enum ErrorLogs {
61
61
INSUFFICIENT_TOKENS_PASSED_FOR_TOKEN_MODE_ENABLE_STRICT("Invalid %s1 request. For tokenMode as ENABLE_STRICT, tokens should be passed for all fields."),
62
62
MISMATCH_OF_FIELDS_AND_TOKENS("Invalid %s1 request. Keys for values and tokens are not matching."),
63
63
INSERT_RECORDS_REJECTED("Insert request resulted in failure."),
64
-
TOKENS_REQUIRED("Invalid %s1 request. Tokens are required."),
65
-
EMPTY_OR_NULL_TOKEN_IN_TOKENS("Invalid %s1 request. Token can not be null or empty in tokens at index %s2."),
64
+
DETOKENIZE_DATA_REQUIRED("Invalid %s1 request. Detokenize data is required."),
65
+
EMPTY_DETOKENIZE_DATA("Invalid %s1 request. Detokenize data can not be empty."),
66
+
EMPTY_OR_NULL_TOKEN_IN_DETOKENIZE_DATA("Invalid %s1 request. Token can not be null or empty in detokenize data at index %s2."),
66
67
REDACTION_IS_REQUIRED("Invalid %s1 request. Redaction is required."),
67
68
DETOKENIZE_REQUEST_REJECTED("Detokenize request resulted in failure."),
68
69
IDS_IS_REQUIRED("Invalid %s1 request. Ids are required."),
0 commit comments