File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed
webauthn-server-core/src/main/java/com/yubico/webauthn Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change 32
32
/**
33
33
* An abstraction of database lookups needed by this library.
34
34
*
35
- * <p>This is used by {@link RelyingParty } to look up credentials and credential IDs.
35
+ * <p>This is used by {@link RelyingPartyV2 } to look up credentials and credential IDs.
36
36
*
37
37
* <p>Unlike {@link CredentialRepository}, this interface does not require support for usernames.
38
38
*
@@ -61,13 +61,13 @@ public interface CredentialRepositoryV2<C extends CredentialRecord> {
61
61
* Look up the public key, backup flags and current signature count for the given credential
62
62
* registered to the given user.
63
63
*
64
- * <p>The returned {@link RegisteredCredential } is not expected to be long-lived. It may be read
64
+ * <p>The returned {@link CredentialRecord } is not expected to be long-lived. It may be read
65
65
* directly from a database or assembled from other components.
66
66
*
67
- * @return a {@link RegisteredCredential } describing the current state of the registered
68
- * credential with credential ID <code>credentialId</code>, if any. If the credential does not
69
- * exist or is registered to a different user handle than <code>userHandle</code>, return
70
- * {@link Optional#empty()}.
67
+ * @return a {@link CredentialRecord } describing the current state of the registered credential
68
+ * with credential ID <code>credentialId</code>, if any. If the credential does not exist or
69
+ * is registered to a different user handle than <code>userHandle</code>, return {@link
70
+ * Optional#empty()}.
71
71
* @deprecated EXPERIMENTAL: This is an experimental feature. It is likely to change or be deleted
72
72
* before reaching a mature release.
73
73
*/
You can’t perform that action at this time.
0 commit comments