Skip to content

Commit 55b10f9

Browse files
committed
Fix dead links to CTAP2.2-20250228 spec
1 parent 3813fee commit 55b10f9

1 file changed

Lines changed: 21 additions & 21 deletions

File tree

webauthn-server-attestation/src/main/java/com/yubico/fido/metadata/SupportedCtapOptions.java

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
* supports the respective option.
1313
*
1414
* @see <a
15-
* href="https://fidoalliance.org/specs/fido-v2.2-ps-20250228/fido-client-to-authenticator-protocol-v2.2-ps-20250228.html#authenticatorGetInfo">Client
15+
* href="https://fidoalliance.org/specs/fido-v2.2-ps-20250714/fido-client-to-authenticator-protocol-v2.2-ps-20250714.html#authenticatorGetInfo">Client
1616
* to Authenticator Protocol (CTAP) §6.4. authenticatorGetInfo (0x04)</a>
1717
*/
1818
@Value
@@ -21,14 +21,14 @@ public class SupportedCtapOptions {
2121

2222
/**
2323
* @see <a
24-
* href="https://fidoalliance.org/specs/fido-v2.2-ps-20250228/fido-client-to-authenticator-protocol-v2.2-ps-20250228.html#authenticatorGetInfo">Client
24+
* href="https://fidoalliance.org/specs/fido-v2.2-ps-20250714/fido-client-to-authenticator-protocol-v2.2-ps-20250714.html#authenticatorGetInfo">Client
2525
* to Authenticator Protocol (CTAP) §6.4. authenticatorGetInfo (0x04)</a>
2626
*/
2727
boolean plat;
2828

2929
/**
3030
* @see <a
31-
* href="https://fidoalliance.org/specs/fido-v2.2-ps-20250228/fido-client-to-authenticator-protocol-v2.2-ps-20250228.html#authenticatorGetInfo">Client
31+
* href="https://fidoalliance.org/specs/fido-v2.2-ps-20250714/fido-client-to-authenticator-protocol-v2.2-ps-20250714.html#authenticatorGetInfo">Client
3232
* to Authenticator Protocol (CTAP) §6.4. authenticatorGetInfo (0x04)</a>
3333
*/
3434
boolean rk;
@@ -37,15 +37,15 @@ public class SupportedCtapOptions {
3737
* If set to <code>true</code> the device is capable of accepting PIN.
3838
*
3939
* @see <a
40-
* href="https://fidoalliance.org/specs/fido-v2.2-ps-20250228/fido-client-to-authenticator-protocol-v2.2-ps-20250228.html#authenticatorGetInfo">Client
40+
* href="https://fidoalliance.org/specs/fido-v2.2-ps-20250714/fido-client-to-authenticator-protocol-v2.2-ps-20250714.html#authenticatorGetInfo">Client
4141
* to Authenticator Protocol (CTAP) §6.4. authenticatorGetInfo (0x04)</a>
4242
*/
4343
@JsonInclude(JsonInclude.Include.NON_DEFAULT)
4444
boolean clientPin;
4545

4646
/**
4747
* @see <a
48-
* href="https://fidoalliance.org/specs/fido-v2.2-ps-20250228/fido-client-to-authenticator-protocol-v2.2-ps-20250228.html#authenticatorGetInfo">Client
48+
* href="https://fidoalliance.org/specs/fido-v2.2-ps-20250714/fido-client-to-authenticator-protocol-v2.2-ps-20250714.html#authenticatorGetInfo">Client
4949
* to Authenticator Protocol (CTAP) §6.4. authenticatorGetInfo (0x04)</a>
5050
*/
5151
boolean up;
@@ -54,29 +54,29 @@ public class SupportedCtapOptions {
5454
* If set to <code>true</code> the device is capable of built-in user verification.
5555
*
5656
* @see <a
57-
* href="https://fidoalliance.org/specs/fido-v2.2-ps-20250228/fido-client-to-authenticator-protocol-v2.2-ps-20250228.html#authenticatorGetInfo">Client
57+
* href="https://fidoalliance.org/specs/fido-v2.2-ps-20250714/fido-client-to-authenticator-protocol-v2.2-ps-20250714.html#authenticatorGetInfo">Client
5858
* to Authenticator Protocol (CTAP) §6.4. authenticatorGetInfo (0x04)</a>
5959
*/
6060
@JsonInclude(JsonInclude.Include.NON_DEFAULT)
6161
boolean uv;
6262

6363
/**
6464
* @see <a
65-
* href="https://fidoalliance.org/specs/fido-v2.2-ps-20250228/fido-client-to-authenticator-protocol-v2.2-ps-20250228.html#authenticatorGetInfo">Client
65+
* href="https://fidoalliance.org/specs/fido-v2.2-ps-20250714/fido-client-to-authenticator-protocol-v2.2-ps-20250714.html#authenticatorGetInfo">Client
6666
* to Authenticator Protocol (CTAP) §6.4. authenticatorGetInfo (0x04)</a>
6767
*/
6868
boolean pinUvAuthToken;
6969

7070
/**
7171
* @see <a
72-
* href="https://fidoalliance.org/specs/fido-v2.2-ps-20250228/fido-client-to-authenticator-protocol-v2.2-ps-20250228.html#authenticatorGetInfo">Client
72+
* href="https://fidoalliance.org/specs/fido-v2.2-ps-20250714/fido-client-to-authenticator-protocol-v2.2-ps-20250714.html#authenticatorGetInfo">Client
7373
* to Authenticator Protocol (CTAP) §6.4. authenticatorGetInfo (0x04)</a>
7474
*/
7575
boolean noMcGaPermissionsWithClientPin;
7676

7777
/**
7878
* @see <a
79-
* href="https://fidoalliance.org/specs/fido-v2.2-ps-20250228/fido-client-to-authenticator-protocol-v2.2-ps-20250228.html#authenticatorGetInfo">Client
79+
* href="https://fidoalliance.org/specs/fido-v2.2-ps-20250714/fido-client-to-authenticator-protocol-v2.2-ps-20250714.html#authenticatorGetInfo">Client
8080
* to Authenticator Protocol (CTAP) §6.4. authenticatorGetInfo (0x04)</a>
8181
*/
8282
boolean largeBlobs;
@@ -85,7 +85,7 @@ public class SupportedCtapOptions {
8585
* If set to <code>true</code> the authenticator is enterprise attestation capable.
8686
*
8787
* @see <a
88-
* href="https://fidoalliance.org/specs/fido-v2.2-ps-20250228/fido-client-to-authenticator-protocol-v2.2-ps-20250228.html#authenticatorGetInfo">Client
88+
* href="https://fidoalliance.org/specs/fido-v2.2-ps-20250714/fido-client-to-authenticator-protocol-v2.2-ps-20250714.html#authenticatorGetInfo">Client
8989
* to Authenticator Protocol (CTAP) §6.4. authenticatorGetInfo (0x04)</a>
9090
*/
9191
@JsonInclude(JsonInclude.Include.NON_DEFAULT)
@@ -95,7 +95,7 @@ public class SupportedCtapOptions {
9595
* If set to <code>true</code> the authenticator supports the authenticatorBioEnrollment commands.
9696
*
9797
* @see <a
98-
* href="https://fidoalliance.org/specs/fido-v2.2-ps-20250228/fido-client-to-authenticator-protocol-v2.2-ps-20250228.html#authenticatorGetInfo">Client
98+
* href="https://fidoalliance.org/specs/fido-v2.2-ps-20250714/fido-client-to-authenticator-protocol-v2.2-ps-20250714.html#authenticatorGetInfo">Client
9999
* to Authenticator Protocol (CTAP) §6.4. authenticatorGetInfo (0x04)</a>
100100
*/
101101
@JsonInclude(JsonInclude.Include.NON_DEFAULT)
@@ -106,65 +106,65 @@ public class SupportedCtapOptions {
106106
* (0x40) commands.
107107
*
108108
* @see <a
109-
* href="https://fidoalliance.org/specs/fido-v2.2-ps-20250228/fido-client-to-authenticator-protocol-v2.2-ps-20250228.html#authenticatorGetInfo">Client
109+
* href="https://fidoalliance.org/specs/fido-v2.2-ps-20250714/fido-client-to-authenticator-protocol-v2.2-ps-20250714.html#authenticatorGetInfo">Client
110110
* to Authenticator Protocol (CTAP) §6.4. authenticatorGetInfo (0x04)</a>
111111
*/
112112
@JsonInclude(JsonInclude.Include.NON_DEFAULT)
113113
boolean userVerificationMgmtPreview;
114114

115115
/**
116116
* @see <a
117-
* href="https://fidoalliance.org/specs/fido-v2.2-ps-20250228/fido-client-to-authenticator-protocol-v2.2-ps-20250228.html#authenticatorGetInfo">Client
117+
* href="https://fidoalliance.org/specs/fido-v2.2-ps-20250714/fido-client-to-authenticator-protocol-v2.2-ps-20250714.html#authenticatorGetInfo">Client
118118
* to Authenticator Protocol (CTAP) §6.4. authenticatorGetInfo (0x04)</a>
119119
*/
120120
boolean uvBioEnroll;
121121

122122
/**
123123
* @see <a
124-
* href="https://fidoalliance.org/specs/fido-v2.2-ps-20250228/fido-client-to-authenticator-protocol-v2.2-ps-20250228.html#authenticatorGetInfo">Client
124+
* href="https://fidoalliance.org/specs/fido-v2.2-ps-20250714/fido-client-to-authenticator-protocol-v2.2-ps-20250714.html#authenticatorGetInfo">Client
125125
* to Authenticator Protocol (CTAP) §6.4. authenticatorGetInfo (0x04)</a>
126126
*/
127127
boolean authnrCfg;
128128

129129
/**
130130
* @see <a
131-
* href="https://fidoalliance.org/specs/fido-v2.2-ps-20250228/fido-client-to-authenticator-protocol-v2.2-ps-20250228.html#authenticatorGetInfo">Client
131+
* href="https://fidoalliance.org/specs/fido-v2.2-ps-20250714/fido-client-to-authenticator-protocol-v2.2-ps-20250714.html#authenticatorGetInfo">Client
132132
* to Authenticator Protocol (CTAP) §6.4. authenticatorGetInfo (0x04)</a>
133133
*/
134134
boolean uvAcfg;
135135

136136
/**
137137
* @see <a
138-
* href="https://fidoalliance.org/specs/fido-v2.2-ps-20250228/fido-client-to-authenticator-protocol-v2.2-ps-20250228.html#authenticatorGetInfo">Client
138+
* href="https://fidoalliance.org/specs/fido-v2.2-ps-20250714/fido-client-to-authenticator-protocol-v2.2-ps-20250714.html#authenticatorGetInfo">Client
139139
* to Authenticator Protocol (CTAP) §6.4. authenticatorGetInfo (0x04)</a>
140140
*/
141141
boolean credMgmt;
142142

143143
/**
144144
* @see <a
145-
* href="https://fidoalliance.org/specs/fido-v2.2-ps-20250228/fido-client-to-authenticator-protocol-v2.2-ps-20250228.html#authenticatorGetInfo">Client
145+
* href="https://fidoalliance.org/specs/fido-v2.2-ps-20250714/fido-client-to-authenticator-protocol-v2.2-ps-20250714.html#authenticatorGetInfo">Client
146146
* to Authenticator Protocol (CTAP) §6.4. authenticatorGetInfo (0x04)</a>
147147
*/
148148
boolean perCredMgmtRO;
149149

150150
/**
151151
* @see <a
152-
* href="https://fidoalliance.org/specs/fido-v2.2-ps-20250228/fido-client-to-authenticator-protocol-v2.2-ps-20250228.html#authenticatorGetInfo">Client
152+
* href="https://fidoalliance.org/specs/fido-v2.2-ps-20250714/fido-client-to-authenticator-protocol-v2.2-ps-20250714.html#authenticatorGetInfo">Client
153153
* to Authenticator Protocol (CTAP) §6.4. authenticatorGetInfo (0x04)</a>
154154
*/
155155
@JsonInclude(JsonInclude.Include.NON_DEFAULT)
156156
boolean credentialMgmtPreview;
157157

158158
/**
159159
* @see <a
160-
* href="https://fidoalliance.org/specs/fido-v2.2-ps-20250228/fido-client-to-authenticator-protocol-v2.2-ps-20250228.html#authenticatorGetInfo">Client
160+
* href="https://fidoalliance.org/specs/fido-v2.2-ps-20250714/fido-client-to-authenticator-protocol-v2.2-ps-20250714.html#authenticatorGetInfo">Client
161161
* to Authenticator Protocol (CTAP) §6.4. authenticatorGetInfo (0x04)</a>
162162
*/
163163
boolean setMinPINLength;
164164

165165
/**
166166
* @see <a
167-
* href="https://fidoalliance.org/specs/fido-v2.2-ps-20250228/fido-client-to-authenticator-protocol-v2.2-ps-20250228.html#authenticatorGetInfo">Client
167+
* href="https://fidoalliance.org/specs/fido-v2.2-ps-20250714/fido-client-to-authenticator-protocol-v2.2-ps-20250714.html#authenticatorGetInfo">Client
168168
* to Authenticator Protocol (CTAP) §6.4. authenticatorGetInfo (0x04)</a>
169169
*/
170170
boolean makeCredUvNotRqd;
@@ -174,7 +174,7 @@ public class SupportedCtapOptions {
174174
* feature.
175175
*
176176
* @see <a
177-
* href="https://fidoalliance.org/specs/fido-v2.2-ps-20250228/fido-client-to-authenticator-protocol-v2.2-ps-20250228.html#authenticatorGetInfo">Client
177+
* href="https://fidoalliance.org/specs/fido-v2.2-ps-20250714/fido-client-to-authenticator-protocol-v2.2-ps-20250714.html#authenticatorGetInfo">Client
178178
* to Authenticator Protocol (CTAP) §6.4. authenticatorGetInfo (0x04)</a>
179179
*/
180180
@JsonInclude(JsonInclude.Include.NON_DEFAULT)

0 commit comments

Comments
 (0)