All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.yubico.webauthn.ToPublicKeyCredentialDescriptor Maven / Gradle / Ivy

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(); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy