Class AuthenticatorAttestationResponse
-
- All Implemented Interfaces:
@Serializable() public final class AuthenticatorAttestationResponse
Represents the response received after an attestation operation by an authenticator.
-
-
Constructor Summary
Constructors Constructor Description AuthenticatorAttestationResponse(String id, String rawId, ResponseAttestation response, String type, String nickname)
-
Method Summary
Modifier and Type Method Description final String
getId()
The base64 urlencoded identifier associated with the attestation response. final String
getRawId()
The base64 urlencoded raw identifier associated with the response. final ResponseAttestation
getResponse()
The attestation response containing client data JSON and attestation object. final String
getType()
The type of the response. final String
getNickname()
The nickname associated with the authenticator. -
-
Constructor Detail
-
AuthenticatorAttestationResponse
AuthenticatorAttestationResponse(String id, String rawId, ResponseAttestation response, String type, String nickname)
-
-
Method Detail
-
getId
final String getId()
The base64 urlencoded identifier associated with the attestation response.
-
getResponse
final ResponseAttestation getResponse()
The attestation response containing client data JSON and attestation object.
-
getNickname
final String getNickname()
The nickname associated with the authenticator. Defaults to "FIDO2App - Android".
-
-
-
-