Class ResponseAssertion
-
- All Implemented Interfaces:
@Serializable() public final class ResponseAssertion
Represents the response data included in an assertion response.
-
-
Field Summary
Fields Modifier and Type Field Description private final String
clientDataJSON
private final String
authenticatorData
private final String
signature
-
Constructor Summary
Constructors Constructor Description ResponseAssertion(String clientDataJSON, String authenticatorData, String signature)
-
Method Summary
Modifier and Type Method Description final String
getClientDataJSON()
The base64 urlencoded client data JSON included in the assertion response. final String
getAuthenticatorData()
The base64 urlencoded authenticator data included in the assertion response. final String
getSignature()
The base64 urlencoded signature included in the assertion response. -
-
Method Detail
-
getClientDataJSON
final String getClientDataJSON()
The base64 urlencoded client data JSON included in the assertion response.
-
getAuthenticatorData
final String getAuthenticatorData()
The base64 urlencoded authenticator data included in the assertion response.
-
getSignature
final String getSignature()
The base64 urlencoded signature included in the assertion response.
-
-
-
-