Uses of Class
io.vertx.rxjava3.ext.auth.authentication.AuthenticationProvider
-
-
Uses of AuthenticationProvider in io.vertx.rxjava3.ext.auth
Subclasses of AuthenticationProvider in io.vertx.rxjava3.ext.auth Modifier and Type Class Description class
ChainAuth
Chain several authentication providers as if they were one.Methods in io.vertx.rxjava3.ext.auth with parameters of type AuthenticationProvider Modifier and Type Method Description ChainAuth
ChainAuth. add(AuthenticationProvider other)
Appends a auth provider to the chain. -
Uses of AuthenticationProvider in io.vertx.rxjava3.ext.auth.authentication
Fields in io.vertx.rxjava3.ext.auth.authentication with type parameters of type AuthenticationProvider Modifier and Type Field Description static io.vertx.lang.rx.TypeArg<AuthenticationProvider>
AuthenticationProvider. __TYPE_ARG
Methods in io.vertx.rxjava3.ext.auth.authentication that return AuthenticationProvider Modifier and Type Method Description static AuthenticationProvider
AuthenticationProvider. newInstance(AuthenticationProvider arg)
-
Uses of AuthenticationProvider in io.vertx.rxjava3.ext.auth.htdigest
Subclasses of AuthenticationProvider in io.vertx.rxjava3.ext.auth.htdigest Modifier and Type Class Description class
HtdigestAuth
An extension of AuthProvider which is using .htdigest file as store -
Uses of AuthenticationProvider in io.vertx.rxjava3.ext.auth.htpasswd
Subclasses of AuthenticationProvider in io.vertx.rxjava3.ext.auth.htpasswd Modifier and Type Class Description class
HtpasswdAuth
An extension of AuthProvider which is using htpasswd file as store -
Uses of AuthenticationProvider in io.vertx.rxjava3.ext.auth.jwt
Subclasses of AuthenticationProvider in io.vertx.rxjava3.ext.auth.jwt Modifier and Type Class Description class
JWTAuth
Factory interface for creating JWT basedAuthenticationProvider
instances. -
Uses of AuthenticationProvider in io.vertx.rxjava3.ext.auth.ldap
Subclasses of AuthenticationProvider in io.vertx.rxjava3.ext.auth.ldap Modifier and Type Class Description class
LdapAuthentication
Factory interface for creating a LDAPAuthenticationProvider
. -
Uses of AuthenticationProvider in io.vertx.rxjava3.ext.auth.oauth2
Subclasses of AuthenticationProvider in io.vertx.rxjava3.ext.auth.oauth2 Modifier and Type Class Description class
OAuth2Auth
Factory interface for creating OAuth2 basedAuthenticationProvider
instances. -
Uses of AuthenticationProvider in io.vertx.rxjava3.ext.auth.otp.hotp
Subclasses of AuthenticationProvider in io.vertx.rxjava3.ext.auth.otp.hotp Modifier and Type Class Description class
HotpAuth
An extension of AuthProvider which uses the one time passwords based on counter to perform authentication. -
Uses of AuthenticationProvider in io.vertx.rxjava3.ext.auth.otp.totp
Subclasses of AuthenticationProvider in io.vertx.rxjava3.ext.auth.otp.totp Modifier and Type Class Description class
TotpAuth
An extension of AuthProvider which uses the one time passwords based on time to perform authentication. -
Uses of AuthenticationProvider in io.vertx.rxjava3.ext.auth.properties
Subclasses of AuthenticationProvider in io.vertx.rxjava3.ext.auth.properties Modifier and Type Class Description class
PropertyFileAuthentication
Factory interface for creating property file basedAuthenticationProvider
instances. -
Uses of AuthenticationProvider in io.vertx.rxjava3.ext.auth.sqlclient
Subclasses of AuthenticationProvider in io.vertx.rxjava3.ext.auth.sqlclient Modifier and Type Class Description class
SqlAuthentication
Factory interface for creatingAuthenticationProvider
instances that use the Vert.x SQL client. -
Uses of AuthenticationProvider in io.vertx.rxjava3.ext.auth.webauthn4j
Subclasses of AuthenticationProvider in io.vertx.rxjava3.ext.auth.webauthn4j Modifier and Type Class Description class
WebAuthn4J
Factory interface for creating WebAuthN basedAuthenticationProvider
instances. -
Uses of AuthenticationProvider in io.vertx.rxjava3.ext.stomp
Methods in io.vertx.rxjava3.ext.stomp with parameters of type AuthenticationProvider Modifier and Type Method Description StompServerHandler
StompServerHandler. authProvider(AuthenticationProvider handler)
Configures the to be used to authenticate the user. -
Uses of AuthenticationProvider in io.vertx.rxjava3.ext.web.handler
Methods in io.vertx.rxjava3.ext.web.handler with parameters of type AuthenticationProvider Modifier and Type Method Description static APIKeyHandler
APIKeyHandler. create(AuthenticationProvider authProvider)
Create an API Key authentication handlerstatic BasicAuthHandler
BasicAuthHandler. create(AuthenticationProvider authProvider)
Create a basic auth handlerstatic BasicAuthHandler
BasicAuthHandler. create(AuthenticationProvider authProvider, String realm)
Create a basic auth handler, specifying realmstatic FormLoginHandler
FormLoginHandler. create(AuthenticationProvider authProvider)
Create a handlerstatic FormLoginHandler
FormLoginHandler. create(AuthenticationProvider authProvider, String usernameParam, String passwordParam, String returnURLParam, String directLoggedInOKURL)
Create a handlerstatic RedirectAuthHandler
RedirectAuthHandler. create(AuthenticationProvider authProvider)
Create a handlerstatic RedirectAuthHandler
RedirectAuthHandler. create(AuthenticationProvider authProvider, String loginRedirectURL)
Create a handlerstatic RedirectAuthHandler
RedirectAuthHandler. create(AuthenticationProvider authProvider, String loginRedirectURL, String returnURLParam)
Create a handler -
Uses of AuthenticationProvider in io.vertx.rxjava3.ext.web.healthchecks
Methods in io.vertx.rxjava3.ext.web.healthchecks with parameters of type AuthenticationProvider Modifier and Type Method Description static HealthCheckHandler
HealthCheckHandler. create(Vertx vertx, AuthenticationProvider provider)
Creates an instance of the default implementation of theHealthCheckHandler
.static HealthCheckHandler
HealthCheckHandler. createWithHealthChecks(HealthChecks hc, AuthenticationProvider provider)
Creates an instance of the default implementation of theHealthCheckHandler
.
-