Skip to content

Commit 1d96ef2

Browse files
committed
Uniformize extension output JavaDocs
1 parent 6c9b2ba commit 1d96ef2

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

webauthn-server-core/src/main/java/com/yubico/webauthn/data/ClientAssertionExtensionOutputs.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
public class ClientAssertionExtensionOutputs implements ClientExtensionOutputs {
5353

5454
/**
55-
* The output from the FIDO AppID Extension (<code>appid</code>).
55+
* The extension output for the FIDO AppID Extension (<code>appid</code>), if any.
5656
*
5757
* <p>This value should be ignored because its behaviour is underspecified, see: <a
5858
* href="https://github.com/w3c/webauthn/issues/1034">https://github.com/w3c/webauthn/issues/1034</a>.
@@ -86,7 +86,7 @@ public Set<String> getExtensionIds() {
8686
}
8787

8888
/**
89-
* The output from the FIDO AppID Extension (<code>appid</code>).
89+
* The extension output for the FIDO AppID Extension (<code>appid</code>), if any.
9090
*
9191
* <p>This value should be ignored because its behaviour is underspecified, see: <a
9292
* href="https://github.com/w3c/webauthn/issues/1034">https://github.com/w3c/webauthn/issues/1034</a>.
@@ -115,7 +115,7 @@ public Optional<Extensions.LargeBlob.LargeBlobAuthenticationOutput> getLargeBlob
115115
public static class ClientAssertionExtensionOutputsBuilder {
116116

117117
/**
118-
* The output from the FIDO AppID Extension (<code>appid</code>).
118+
* The extension output for the FIDO AppID Extension (<code>appid</code>).
119119
*
120120
* <p>This value should be ignored because its behaviour is underspecified, see: <a
121121
* href="https://github.com/w3c/webauthn/issues/1034">https://github.com/w3c/webauthn/issues/1034</a>.
@@ -138,7 +138,7 @@ private ClientAssertionExtensionOutputsBuilder appid(Boolean appid) {
138138
}
139139

140140
/**
141-
* The output from the FIDO AppID Extension (<code>appid</code>).
141+
* The extension output for the FIDO AppID Extension (<code>appid</code>).
142142
*
143143
* <p>This value should be ignored because its behaviour is underspecified, see: <a
144144
* href="https://github.com/w3c/webauthn/issues/1034">https://github.com/w3c/webauthn/issues/1034</a>.

webauthn-server-core/src/main/java/com/yubico/webauthn/data/ClientRegistrationExtensionOutputs.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -119,12 +119,12 @@ public Optional<Extensions.CredentialProperties.CredentialPropertiesOutput> getC
119119
}
120120

121121
/**
122-
* Extension output for the Large blob storage extension (<code>largeBlob</code>), if any.
122+
* The extension output for the Large blob storage extension (<code>largeBlob</code>), if any.
123123
*
124124
* @see com.yubico.webauthn.data.Extensions.LargeBlob.LargeBlobRegistrationOutput
125125
* @see <a
126-
* href="https://www.w3.org/TR/2021/REC-webauthn-2-20210408/#sctn-large-blob-extension">§10.5.
127-
* Large blob storage extension (largeBlob)</a>
126+
* href="https://www.w3.org/TR/2021/REC-webauthn-2-20210408/#sctn-large-blob-extension">§10.5.Large
127+
* blob storage extension (largeBlob)</a>
128128
*/
129129
public Optional<Extensions.LargeBlob.LargeBlobRegistrationOutput> getLargeBlob() {
130130
return Optional.ofNullable(largeBlob);

0 commit comments

Comments
 (0)