Class TotpAuth
- java.lang.Object
-
- io.vertx.rxjava3.ext.auth.authentication.AuthenticationProvider
-
- io.vertx.rxjava3.ext.auth.otp.totp.TotpAuth
-
public class TotpAuth extends AuthenticationProvider
An extension of AuthProvider which uses the one time passwords based on time to perform authentication.NOTE: This class has been automatically generated from the
original
non RX-ified interface using Vert.x codegen.
-
-
Field Summary
Fields Modifier and Type Field Description static io.vertx.lang.rx.TypeArg<TotpAuth>
__TYPE_ARG
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description TotpAuth
authenticatorFetcher(java.util.function.Function<String,Single<Authenticator>> fetcher)
Provide a that can fetch s from a backend given anidentifier
argument.TotpAuth
authenticatorUpdater(java.util.function.Function<Authenticator,Completable> updater)
Provide a that can update or insert a .static TotpAuth
create()
Creates an instance of TotpAuth.static TotpAuth
create(TotpAuthOptions totpAuthOptions)
Creates an instance of TotpAuth.Single<Authenticator>
createAuthenticator(String id, OtpKey otpKey)
Creating authenticator from user id and key.boolean
equals(Object o)
String
generateUri(OtpKey otpKey, String label)
Creating URI for register in key in user device.String
generateUri(OtpKey otpKey, String issuer, String user)
Creating URI for register in key in user device.String
generateUri(OtpKey otpKey, String issuer, String user, String label)
Creating URI for register in key in user device.TotpAuth
getDelegate()
int
hashCode()
static TotpAuth
newInstance(TotpAuth arg)
Single<Authenticator>
rxCreateAuthenticator(String id, OtpKey otpKey)
Creating authenticator from user id and key.String
toString()
-
Methods inherited from class io.vertx.rxjava3.ext.auth.authentication.AuthenticationProvider
authenticate, newInstance, rxAuthenticate
-
-
-
-
Field Detail
-
__TYPE_ARG
public static final io.vertx.lang.rx.TypeArg<TotpAuth> __TYPE_ARG
-
-
Method Detail
-
toString
public String toString()
- Overrides:
toString
in classAuthenticationProvider
-
equals
public boolean equals(Object o)
- Overrides:
equals
in classAuthenticationProvider
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classAuthenticationProvider
-
getDelegate
public TotpAuth getDelegate()
- Overrides:
getDelegate
in classAuthenticationProvider
-
authenticatorFetcher
public TotpAuth authenticatorFetcher(java.util.function.Function<String,Single<Authenticator>> fetcher)
Provide a that can fetch s from a backend given anidentifier
argument.The function signature is as follows:
(id) -> Future
id
the identifier to lookup.- async result with a authenticator.
- Parameters:
fetcher
- fetcher function.- Returns:
- fluent self.
-
authenticatorUpdater
public TotpAuth authenticatorUpdater(java.util.function.Function<Authenticator,Completable> updater)
Provide a that can update or insert a . The function should store a given authenticator to a persistence storage.When an authenticator is already present, this method must at least update , and is not required to perform any other update.
For new authenticators, the whole object data must be persisted.
The function signature is as follows:
(Authenticator) -> Future
- the authenticator data to update.
- async result of the operation.
- Parameters:
updater
- updater function.- Returns:
- fluent self.
-
createAuthenticator
public Single<Authenticator> createAuthenticator(String id, OtpKey otpKey)
Creating authenticator from user id and key.- Parameters:
id
- id user.otpKey
- key of user used for auth.- Returns:
- an object containing all the necessary information to authenticate a user.
-
rxCreateAuthenticator
public Single<Authenticator> rxCreateAuthenticator(String id, OtpKey otpKey)
Creating authenticator from user id and key.- Parameters:
id
- id user.otpKey
- key of user used for auth.- Returns:
- an object containing all the necessary information to authenticate a user.
-
generateUri
public String generateUri(OtpKey otpKey, String issuer, String user, String label)
Creating URI for register in key in user device.- Parameters:
otpKey
- user key.issuer
- issuer of key.user
- display name of user account.label
- the label to identify which account a key is associated with.- Returns:
- uri containing the key.
-
generateUri
public String generateUri(OtpKey otpKey, String issuer, String user)
Creating URI for register in key in user device.- Parameters:
otpKey
- user key.issuer
- issuer of key.user
- display name of user account.- Returns:
- uri containing the key.
-
generateUri
public String generateUri(OtpKey otpKey, String label)
Creating URI for register in key in user device.- Parameters:
otpKey
- user key.label
- the label to identify which account a key is associated with.- Returns:
- uri containing the key.
-
create
public static TotpAuth create()
Creates an instance of TotpAuth.- Returns:
- the created instance of
TotpAuth
.
-
create
public static TotpAuth create(TotpAuthOptions totpAuthOptions)
Creates an instance of TotpAuth.- Parameters:
totpAuthOptions
- the config.- Returns:
- the created instance of
TotpAuth
.
-
-