Uses of Interface
io.vertx.ext.auth.User
-
Packages that use User Package Description io.vertx.ext.auth io.vertx.ext.auth.audit io.vertx.ext.auth.authentication io.vertx.ext.auth.authorization -
-
Uses of User in io.vertx.ext.auth
Methods in io.vertx.ext.auth that return User Modifier and Type Method Description static UserUser. create(JsonObject principal)Factory for user instances that are free form.static UserUser. create(JsonObject principal, JsonObject attributes)Factory for user instances that are free form.static UserUser. fromName(String username)Factory for user instances that are single string.static UserUser. fromToken(String token)Factory for user instances that are single string.UserUser. merge(User other)Merge the principal and attributes of a second user into this object properties.Methods in io.vertx.ext.auth with parameters of type User Modifier and Type Method Description UserUser. merge(User other)Merge the principal and attributes of a second user into this object properties. -
Uses of User in io.vertx.ext.auth.audit
Methods in io.vertx.ext.auth.audit with parameters of type User Modifier and Type Method Description SecurityAuditSecurityAudit. user(User user) -
Uses of User in io.vertx.ext.auth.authentication
Methods in io.vertx.ext.auth.authentication that return types with arguments of type User Modifier and Type Method Description Future<User>AuthenticationProvider. authenticate(Credentials credentials)Authenticate a user. -
Uses of User in io.vertx.ext.auth.authorization
Methods in io.vertx.ext.auth.authorization that return User Modifier and Type Method Description UserAuthorizationContext. user()Get the authenticated userMethods in io.vertx.ext.auth.authorization with parameters of type User Modifier and Type Method Description static AuthorizationContextAuthorizationContext. create(User user)Factory for Authorization Contextstatic AuthorizationContextAuthorizationContext. create(User user, MultiMap variables)Factory for Authorization ContextFuture<Void>AuthorizationProvider. getAuthorizations(User user)Updates the user with the set of authorizations.default booleanAuthorization. match(User user)this methods verifies whether or not the authorization match the specified user.
-