com.yubico.webauthn.ToPublicKeyCredentialDescriptor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of webauthn-server-core Show documentation
Show all versions of webauthn-server-core Show documentation
Yubico WebAuthn server core API
The newest version!
package com.yubico.webauthn;
import com.yubico.webauthn.data.PublicKeyCredentialDescriptor;
/**
* A type that can be converted into a {@link PublicKeyCredentialDescriptor} value.
*
* @see PublicKeyCredentialDescriptor
* @see §5.10.3.
* Credential Descriptor (dictionary PublicKeyCredentialDescriptor)
* @see CredentialRecord
* @deprecated EXPERIMENTAL: This is an experimental feature. It is likely to change or be deleted
* before reaching a mature release.
*/
@Deprecated
public interface ToPublicKeyCredentialDescriptor {
/**
* Convert this value to a {@link PublicKeyCredentialDescriptor} value.
*
* Implementations MUST NOT return null.
*
* @see PublicKeyCredentialDescriptor
* @see §5.10.3.
* Credential Descriptor (dictionary PublicKeyCredentialDescriptor)
* @see CredentialRecord
* @deprecated EXPERIMENTAL: This is an experimental feature. It is likely to change or be deleted
* before reaching a mature release.
*/
@Deprecated
PublicKeyCredentialDescriptor toPublicKeyCredentialDescriptor();
}