Package com.yubico.webauthn
Class FinishAssertionOptions
- java.lang.Object
-
- com.yubico.webauthn.FinishAssertionOptions
-
public final class FinishAssertionOptions extends java.lang.Object
Parameters forRelyingParty.finishAssertion(FinishAssertionOptions)
.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
FinishAssertionOptions.FinishAssertionOptionsBuilder
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static FinishAssertionOptions.FinishAssertionOptionsBuilder.MandatoryStages
builder()
boolean
equals(java.lang.Object o)
java.util.Optional<ByteArray>
getCallerTokenBindingId()
The token binding ID of the connection to the client, if any.@NonNull AssertionRequest
getRequest()
The request that theresponse
is a response to.@NonNull PublicKeyCredential<AuthenticatorAssertionResponse,ClientAssertionExtensionOutputs>
getResponse()
The client's response to therequest
.int
hashCode()
FinishAssertionOptions.FinishAssertionOptionsBuilder
toBuilder()
java.lang.String
toString()
-
-
-
Method Detail
-
getCallerTokenBindingId
public java.util.Optional<ByteArray> getCallerTokenBindingId()
The token binding ID of the connection to the client, if any.- See Also:
- The Token Binding Protocol Version 1.0
-
builder
public static FinishAssertionOptions.FinishAssertionOptionsBuilder.MandatoryStages builder()
-
toBuilder
public FinishAssertionOptions.FinishAssertionOptionsBuilder toBuilder()
-
getRequest
@NonNull public @NonNull AssertionRequest getRequest()
The request that theresponse
is a response to.
-
getResponse
@NonNull public @NonNull PublicKeyCredential<AuthenticatorAssertionResponse,ClientAssertionExtensionOutputs> getResponse()
The client's response to therequest
.- See Also:
- navigator.credentials.get()
-
equals
public boolean equals(java.lang.Object o)
- Overrides:
equals
in classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classjava.lang.Object
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
-