Class VirtualAuthenticatorOptions
- java.lang.Object
-
- org.openqa.selenium.devtools.webauthn.model.VirtualAuthenticatorOptions
-
public class VirtualAuthenticatorOptions extends java.lang.Object
-
-
Constructor Summary
Constructors Constructor Description VirtualAuthenticatorOptions(AuthenticatorProtocol protocol, AuthenticatorTransport transport, java.util.Optional<java.lang.Boolean> hasResidentKey, java.util.Optional<java.lang.Boolean> hasUserVerification, java.util.Optional<java.lang.Boolean> automaticPresenceSimulation, java.util.Optional<java.lang.Boolean> isUserVerified)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.Optional<java.lang.Boolean>
getAutomaticPresenceSimulation()
If set to true, tests of user presence will succeed immediately.java.util.Optional<java.lang.Boolean>
getHasResidentKey()
Defaults to false.java.util.Optional<java.lang.Boolean>
getHasUserVerification()
Defaults to false.java.util.Optional<java.lang.Boolean>
getIsUserVerified()
Sets whether User Verification succeeds or fails for an authenticator.AuthenticatorProtocol
getProtocol()
AuthenticatorTransport
getTransport()
-
-
-
Constructor Detail
-
VirtualAuthenticatorOptions
public VirtualAuthenticatorOptions(AuthenticatorProtocol protocol, AuthenticatorTransport transport, java.util.Optional<java.lang.Boolean> hasResidentKey, java.util.Optional<java.lang.Boolean> hasUserVerification, java.util.Optional<java.lang.Boolean> automaticPresenceSimulation, java.util.Optional<java.lang.Boolean> isUserVerified)
-
-
Method Detail
-
getProtocol
public AuthenticatorProtocol getProtocol()
-
getTransport
public AuthenticatorTransport getTransport()
-
getHasResidentKey
public java.util.Optional<java.lang.Boolean> getHasResidentKey()
Defaults to false.
-
getHasUserVerification
public java.util.Optional<java.lang.Boolean> getHasUserVerification()
Defaults to false.
-
getAutomaticPresenceSimulation
public java.util.Optional<java.lang.Boolean> getAutomaticPresenceSimulation()
If set to true, tests of user presence will succeed immediately. Otherwise, they will not be resolved. Defaults to true.
-
getIsUserVerified
public java.util.Optional<java.lang.Boolean> getIsUserVerified()
Sets whether User Verification succeeds or fails for an authenticator. Defaults to false.
-
-