com.yubico.webauthn.data.ExtensionOutputs 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
package com.yubico.webauthn.data;
import com.fasterxml.jackson.annotation.JsonIgnore;
import java.util.Set;
public interface ExtensionOutputs {
/** Returns a {@link Set} of the extension IDs for which an extension output is present. */
@JsonIgnore
Set getExtensionIds();
}