Package | Description |
---|---|
io.vertx.ext.auth | |
io.vertx.ext.auth.mongo | |
io.vertx.ext.auth.oauth2 | |
io.vertx.ext.web | |
io.vertx.ext.web.handler.sockjs | |
io.vertx.rxjava.ext.auth |
Modifier and Type | Class and Description |
---|---|
class |
AbstractUser
Useful base class for implementing a User object.
|
Modifier and Type | Method and Description |
---|---|
User |
AbstractUser.clearCache() |
User |
User.clearCache()
The User object will cache any authorities that it knows it has to avoid hitting the
underlying auth provider each time.
|
User |
AbstractUser.isAuthorised(String authority,
Handler<AsyncResult<Boolean>> resultHandler) |
User |
User.isAuthorised(String authority,
Handler<AsyncResult<Boolean>> resultHandler)
Is the user authorised to
|
Modifier and Type | Method and Description |
---|---|
void |
AuthProvider.authenticate(JsonObject authInfo,
Handler<AsyncResult<User>> resultHandler)
Authenticate a user.
|
Modifier and Type | Method and Description |
---|---|
String |
HashStrategy.computeHash(String password,
User user)
Compute the hashed password given the unhashed password and the user
|
String |
HashStrategy.getSalt(User user)
Retrieve the salt.
|
String |
HashStrategy.getStoredPwd(User user)
Retrieve the password from the user, or as clear text or as hashed version, depending on the definition
|
Modifier and Type | Interface and Description |
---|---|
interface |
AccessToken
AccessToken extension to the User interface
|
Modifier and Type | Method and Description |
---|---|
User |
RoutingContext.user()
Get the authenticated user (if any).
|
Modifier and Type | Method and Description |
---|---|
void |
RoutingContext.setUser(User user)
Set the user.
|
Modifier and Type | Method and Description |
---|---|
User |
SockJSSocket.webUser() |
Modifier and Type | Method and Description |
---|---|
static User |
User.newInstance(User arg) |
Constructor and Description |
---|
User(User delegate) |
Copyright © 2016. All rights reserved.