Abstract
Abstract
getAbstract
getAbstract
getAbstract
getAbstract
getAbstract
getAbstract
getAbstract
getAbstract
getThe maximum number of retries for authentication. The authentication retries will fail after this count is exceeded.
the maximum number of retries.
use Authentication.retryPolicyObtainingAuthorizationProvider instead. The value returned by this method will be ignored.
Abstract
getTime interval for authentication in seconds. The authentication retries will fail after this time is exceeded.
the time interval for authentication.
use Authentication.retryPolicyObtainingAuthorizationProvider instead. The value returned by this method will be ignored.
Abstract
getAbstract
getThe user interaction timeout in seconds. This is the maximum time that the SDK will wait to obtain a result when AccountSelector.selectAccount, AuthenticatorSelector.selectAuthenticator, PinUserVerifier.verifyPin, PasswordUserVerifier.verifyPassword, FingerprintUserVerifier.verifyFingerprint, or BiometricUserVerifier.verifyBiometric are invoked (i.e. the maximum time to wait before any of the methods of the provided consumer in any of those methods is invoked).
If the timeout occurs, then the operation delegate failure method (Registration.onError, OutOfBandRegistration.onError, Authentication.onError or OutOfBandAuthentication.onError, depending on the operation being executed) will be invoked. The provided exception will contain an FidoErrorCodeType.UserNotResponsive error code.
the timeout for user interaction.
Abstract
getSpecifies the facet ID of the application.
The FIDO server (i.e. nevisFIDO) must be configured with the facet ID(s) of your application(s). If the facet ID of your application is not referenced by the nevisFIDO configuration, the operations will fail with a FidoErrorCodeType.UntrustedFacetId error.
IMPORTANT
This property is Android specific and will be ignored by iOS native plugin.
the facet ID of the application. Undefined if the SDK should figure out the facet ID following the FIDO UAF specification.
Static
builderReturns a new ConfigurationBuilder.
a new ConfigurationBuilder.
Static
authReturns a new ConfigurationAuthCloudBuilder. This is a simpler version of ConfigurationBuilder that can only be used when your application interacts with the Nevis Authentication Cloud.
If you are fine with the default network parameters of the builder, you just need to provide the hostname of your application to build a Configuration object:
a new ConfigurationAuthCloudBuilder.
const configuration = Configuration.authCloudBuilder()
.hostname(hostname)
.build();
Generated using TypeDoc
The MobileAuthenticationClient configuration.
The Configuration is used to build and initialize the MobileAuthenticationClient.
See
MobileAuthenticationClientInitializer.configuration