io.fusionauth.domain.webauthn.WebAuthnExtensionsClientOutputs Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fusionauth-java-client Show documentation
Show all versions of fusionauth-java-client Show documentation
The Java Client library provides a native Java binding to the FusionAuth REST API.
The newest version!
/*
* Copyright (c) 2022, FusionAuth, All Rights Reserved
*/
package io.fusionauth.domain.webauthn;
import com.fasterxml.jackson.annotation.JsonIgnore;
/**
* Contains extension output for requested extensions during a WebAuthn ceremony
*
* @author Spencer Witt
*/
public class WebAuthnExtensionsClientOutputs {
public CredentialPropertiesOutput credProps = new CredentialPropertiesOutput();
@JsonIgnore
public boolean isDiscoverableCredential() {
return credProps != null &&
credProps.rk;
}
}
© 2015 - 2026 Weber Informatics LLC | Privacy Policy