File tree Expand file tree Collapse file tree 2 files changed +8
-0
lines changed
webauthn-server-core/src/main/java/com/yubico/webauthn/data Expand file tree Collapse file tree 2 files changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -8,6 +8,8 @@ Deprecated features:
8
8
release will remove this option and always behave as if the option had been
9
9
set to `true`.
10
10
* Enum value `AttestationType.ECDAA`. ECDAA was removed in WebAuthn Level 2.
11
+ * Function `TokenBindingStatus.fromJsonString(String)` deprecated. It should not
12
+ have been part of the public API to begin with.
11
13
12
14
13
15
== Version 1.12.3 (unreleased) ==
Original file line number Diff line number Diff line change @@ -66,6 +66,12 @@ private static Optional<TokenBindingStatus> fromString(@NonNull String value) {
66
66
}
67
67
68
68
@ JsonCreator
69
+ @ Deprecated
70
+ /**
71
+ * @deprecated Use <code>
72
+ * {@link CollectedClientData#getTokenBinding()}.{@link TokenBindingInfo#getStatus() getStatus()}
73
+ * </code> instead.
74
+ */
69
75
public static TokenBindingStatus fromJsonString (@ NonNull String value ) {
70
76
return fromString (value )
71
77
.orElseThrow (
You can’t perform that action at this time.
0 commit comments