Uses of Class
io.vertx.mutiny.ext.auth.User
-
-
Uses of User in io.vertx.mutiny.ext.auth
Fields in io.vertx.mutiny.ext.auth with type parameters of type User Modifier and Type Field Description static TypeArg<User>
User. __TYPE_ARG
Methods in io.vertx.mutiny.ext.auth that return User Modifier and Type Method Description User
User. clearCache()
Deprecated.This method will be removed.static User
User. create(io.vertx.core.json.JsonObject principal)
static User
User. create(io.vertx.core.json.JsonObject principal, io.vertx.core.json.JsonObject attributes)
static User
User. fromName(String username)
static User
User. fromToken(String token)
User
User. isAuthorizedAndForget(Authorization authority)
Deprecated.User
User. isAuthorizedAndForget(String authority)
Deprecated.Use typed alternative#isAuthorized(Authorization, Handler)
static User
User. newInstance(io.vertx.ext.auth.User arg)
-
Uses of User in io.vertx.mutiny.ext.auth.authentication
Methods in io.vertx.mutiny.ext.auth.authentication that return User Modifier and Type Method Description User
AuthenticationProvider. authenticateAndAwait(io.vertx.core.json.JsonObject credentials)
Blocking variant ofAuthenticationProvider.authenticate(JsonObject)
.User
AuthenticationProvider. authenticateAndAwait(io.vertx.ext.auth.authentication.Credentials credentials)
Blocking variant ofAuthenticationProvider.authenticate(Credentials)
.Methods in io.vertx.mutiny.ext.auth.authentication that return types with arguments of type User Modifier and Type Method Description io.smallrye.mutiny.Uni<User>
AuthenticationProvider. authenticate(io.vertx.core.json.JsonObject credentials)
Authenticate a user.io.smallrye.mutiny.Uni<User>
AuthenticationProvider. authenticate(io.vertx.ext.auth.authentication.Credentials credentials)
Authenticate a user. -
Uses of User in io.vertx.mutiny.ext.auth.authorization
Methods in io.vertx.mutiny.ext.auth.authorization that return User Modifier and Type Method Description User
AuthorizationContext. user()
Methods in io.vertx.mutiny.ext.auth.authorization with parameters of type User Modifier and Type Method Description static AuthorizationContext
AuthorizationContext. create(User user)
io.smallrye.mutiny.Uni<Void>
AuthorizationProvider. getAuthorizations(User user)
Updates the user with the set of authorizations.Void
AuthorizationProvider. getAuthorizationsAndAwait(User user)
Blocking variant ofAuthorizationProvider.getAuthorizations(io.vertx.mutiny.ext.auth.User)
.void
AuthorizationProvider. getAuthorizationsAndForget(User user)
Variant ofAuthorizationProvider.getAuthorizations(io.vertx.mutiny.ext.auth.User)
that ignores the result of the operation.boolean
Authorization. match(User user)
-
Uses of User in io.vertx.mutiny.ext.auth.mongo
Methods in io.vertx.mutiny.ext.auth.mongo with parameters of type User Modifier and Type Method Description String
HashStrategy. computeHash(String password, User user)
Deprecated.String
HashStrategy. getSalt(User user)
Deprecated.String
HashStrategy. getStoredPwd(User user)
Deprecated. -
Uses of User in io.vertx.mutiny.ext.auth.oauth2
Subclasses of User in io.vertx.mutiny.ext.auth.oauth2 Modifier and Type Class Description class
AccessToken
AccessToken extension to the User interfaceMethods in io.vertx.mutiny.ext.auth.oauth2 that return User Modifier and Type Method Description User
OAuth2Auth. refreshAndAwait(User user)
Blocking variant ofOAuth2Auth.refresh(io.vertx.mutiny.ext.auth.User)
.Methods in io.vertx.mutiny.ext.auth.oauth2 that return types with arguments of type User Modifier and Type Method Description io.smallrye.mutiny.Uni<User>
OAuth2Auth. refresh(User user)
Refresh the current User (access token).Methods in io.vertx.mutiny.ext.auth.oauth2 with parameters of type User Modifier and Type Method Description String
OAuth2Auth. endSessionURL(User user)
String
OAuth2Auth. endSessionURL(User user, io.vertx.core.json.JsonObject params)
io.smallrye.mutiny.Uni<User>
OAuth2Auth. refresh(User user)
Refresh the current User (access token).User
OAuth2Auth. refreshAndAwait(User user)
Blocking variant ofOAuth2Auth.refresh(io.vertx.mutiny.ext.auth.User)
.OAuth2Auth
OAuth2Auth. refreshAndForget(User user)
Variant ofOAuth2Auth.refresh(io.vertx.mutiny.ext.auth.User)
that ignores the result of the operation.io.smallrye.mutiny.Uni<Void>
OAuth2Auth. revoke(User user)
Revoke an obtained access token.io.smallrye.mutiny.Uni<Void>
OAuth2Auth. revoke(User user, String tokenType)
Revoke an obtained access or refresh token.Void
OAuth2Auth. revokeAndAwait(User user)
Blocking variant ofOAuth2Auth.revoke(io.vertx.mutiny.ext.auth.User)
.Void
OAuth2Auth. revokeAndAwait(User user, String tokenType)
Blocking variant ofOAuth2Auth.revoke(io.vertx.mutiny.ext.auth.User,String)
.OAuth2Auth
OAuth2Auth. revokeAndForget(User user)
Variant ofOAuth2Auth.revoke(io.vertx.mutiny.ext.auth.User)
that ignores the result of the operation.OAuth2Auth
OAuth2Auth. revokeAndForget(User user, String tokenType)
Variant ofOAuth2Auth.revoke(io.vertx.mutiny.ext.auth.User,String)
that ignores the result of the operation.io.smallrye.mutiny.Uni<io.vertx.core.json.JsonObject>
OAuth2Auth. userInfo(User user)
Retrieve profile information and other attributes for a logged-in end-user.io.vertx.core.json.JsonObject
OAuth2Auth. userInfoAndAwait(User user)
Blocking variant ofOAuth2Auth.userInfo(io.vertx.mutiny.ext.auth.User)
.OAuth2Auth
OAuth2Auth. userInfoAndForget(User user)
Variant ofOAuth2Auth.userInfo(io.vertx.mutiny.ext.auth.User)
that ignores the result of the operation. -
Uses of User in io.vertx.mutiny.ext.stomp
Methods in io.vertx.mutiny.ext.stomp that return User Modifier and Type Method Description User
StompServerHandler. getUserBySession(String session)
-
Uses of User in io.vertx.mutiny.ext.web
Methods in io.vertx.mutiny.ext.web that return User Modifier and Type Method Description User
RoutingContext. user()
Methods in io.vertx.mutiny.ext.web with parameters of type User Modifier and Type Method Description void
RoutingContext. setUser(User user)
-
Uses of User in io.vertx.mutiny.ext.web.handler
Methods in io.vertx.mutiny.ext.web.handler with parameters of type User Modifier and Type Method Description io.smallrye.mutiny.Uni<Void>
SessionHandler. setUser(RoutingContext context, User user)
Set the user for the sessionVoid
SessionHandler. setUserAndAwait(RoutingContext context, User user)
SessionHandler
SessionHandler. setUserAndForget(RoutingContext context, User user)
Variant ofSessionHandler.setUser(io.vertx.mutiny.ext.web.RoutingContext,io.vertx.mutiny.ext.auth.User)
that ignores the result of the operation.Method parameters in io.vertx.mutiny.ext.web.handler with type arguments of type User Modifier and Type Method Description SimpleAuthenticationHandler
SimpleAuthenticationHandler. authenticate(Function<RoutingContext,io.smallrye.mutiny.Uni<User>> authenticationFunction)
-
Uses of User in io.vertx.mutiny.ext.web.handler.sockjs
Methods in io.vertx.mutiny.ext.web.handler.sockjs that return User Modifier and Type Method Description User
SockJSSocket. webUser()
-