File tree Expand file tree Collapse file tree 3 files changed +7
-3
lines changed
webauthn-server-core/src/main/java/com/yubico/webauthn/data Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -60,6 +60,10 @@ Fixes:
60
60
* Added missing JavaDoc for `id` and `name` methods of initial
61
61
`RelyingPartyIdentityBuilder` stages.
62
62
* Added and improved JavaDoc for required builder methods.
63
+ * Javadoc for `TokenBindingInfo.id` incorrectly stated that the value is
64
+ base64url encoded.
65
+ * Javadoc for `TokenBindingStatus.PRESENT` incorrectly referenced its own
66
+ (private) `id` member instead of `TokenBindingInfo.id`.
63
67
64
68
65
69
== Version 1.10.1 ==
Original file line number Diff line number Diff line change @@ -46,8 +46,8 @@ public class TokenBindingInfo {
46
46
@ NonNull private final TokenBindingStatus status ;
47
47
48
48
/**
49
- * This member MUST be present if {@link #status} is present, and MUST be a base64url encoding of
50
- * the Token Binding ID that was used when communicating with the Relying Party.
49
+ * This member MUST be present if {@link #status} is {@link TokenBindingStatus#PRESENT PRESENT},
50
+ * and MUST be the Token Binding ID that was used when communicating with the Relying Party.
51
51
*/
52
52
private final ByteArray id ;
53
53
Original file line number Diff line number Diff line change @@ -48,7 +48,7 @@ public enum TokenBindingStatus implements JsonStringSerializable {
48
48
49
49
/**
50
50
* Indicates token binding was used when communicating with the Relying Party. In this case, the
51
- * {@link TokenBindingStatus#id } member MUST be present.
51
+ * {@link TokenBindingInfo#getId() } member MUST be present.
52
52
*/
53
53
PRESENT ("present" ),
54
54
You can’t perform that action at this time.
0 commit comments