static SqlUserUtil |
SqlUserUtil.create(SqlClient client) |
Create an instance of the user helper.
|
static SqlUserUtil |
SqlUserUtil.create(SqlClient client,
String insertUserSQL,
String insertUserRoleSQL,
String insertRolePermissionSQL) |
Create an instance of the user helper with custom queries.
|
SqlUserUtil |
SqlUserUtil.createHashedUser(String username,
String hash) |
Insert a user into a database.
|
SqlUserUtil |
SqlUserUtil.createHashedUser(String username,
String hash,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Void>> resultHandler) |
Insert a user into a database.
|
SqlUserUtil |
SqlUserUtil.createRolePermission(String role,
String permission) |
Insert a role permission into a database.
|
SqlUserUtil |
SqlUserUtil.createRolePermission(String role,
String permission,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Void>> resultHandler) |
Insert a role permission into a database.
|
SqlUserUtil |
SqlUserUtil.createUser(String username,
String password) |
Insert a user into a database.
|
SqlUserUtil |
SqlUserUtil.createUser(String username,
String password,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Void>> resultHandler) |
Insert a user into a database.
|
SqlUserUtil |
SqlUserUtil.createUserRole(String username,
String role) |
Insert a user role into a database.
|
SqlUserUtil |
SqlUserUtil.createUserRole(String username,
String role,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Void>> resultHandler) |
Insert a user role into a database.
|
static SqlUserUtil |
SqlUserUtil.newInstance(io.vertx.ext.auth.sqlclient.SqlUserUtil arg) |
|